web-dev-qa-db-ja.com

angular 6でjquery-uiを使用する方法

jquery-ui in angular 6コンポーネントを使用するためにStackOverflowに投稿された多くのメソッドを試しましたが、どれも機能しませんでした。例えば、

  1. npm install jquery jquery-uiを実行して、jqueryとjquery-uiをインストールしました。

  2. Angular.jsonに以下が含まれています

    「スクリプト」:[「node_modules/jquery/dist/jquery.js」、「node_modules/jquery-ui-dist/jquery-ui.js」、

エラーは次のとおりです:

AppComponent_Host.ngfactory.js [sm]:1ERROR TypeError: jquery__WEBPACK_IMPORTED_MODULE_1__(...).slider is not a function
    at AppComponent.Push../src/app/app.component.ts.AppComponent.ngAfterContentInit (http:||localhost:4200/main.js:154:56)
    at callProviderLifecycles (http:||localhost:4200/vendor.js:42663:18)
    at callElementProvidersLifecycles (http:||localhost:4200/vendor.js:42644:13)
    at callLifecycleHooksChildrenFirst (http:||localhost:4200/vendor.js:42634:29)
    at checkAndUpdateView (http:||localhost:4200/vendor.js:43565:5)
    at callWithDebugContext (http:||localhost:4200/vendor.js:44454:25)
    at Object.debugCheckAndUpdateView [as checkAndUpdateView] (http:||localhost:4200/vendor.js:44132:12)
    at ViewRef_.Push../node_modules/@angular/core/fesm5/core.js.ViewRef_.detectChanges (http:||localhost:4200/vendor.js:41948:22)
    at http:||localhost:4200/vendor.js:37684:63
    at Array.forEach (native)

index.html

<!DOCTYPE html>
<html lang="en">
<head>
<title>Car Dealer</title>
</head>
<body>
  <app-root></app-root>
</body> 
</html>

app.component.html

<div id="slider">
</div>

app.component.ts

import { Component, AfterContentInit } from '@angular/core';
import * as $ from 'jquery';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent implements AfterContentInit {
  title = 'MDK';

  ngAfterContentInit() {
    $( "#slider" ).slider({
      range: true,
      values: [ 17, 67 ]
    });
  }
}

別の投稿では、私は使用しない angle.json of angular 6であるが、index.htmlを使用してスクリプトを含めることもできましたが、動作しませんでした。

Index.htmlに以下を含めましたが、それでも同じエラーが表示されました

<script src="https://code.jquery.com/jquery-2.2.4.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
7

書くなら

import * as $ from 'jquery';

typeScriptコンパイラによってjquery-ui変数にインポートされるのは、jqueryのコード($などの追加のプラグインではありません)のみです。

使用する場合

 declare let $: any;

次に、この変数が存在することをTypeScriptに通知しています。その場合、$には、angular.jsonjquery AND jquery-uiプラグイン)でインポートしたスクリプトで割り当てられたものがすべて含まれます。

9
David

angular.jsonファイルのscripts部分を更新してください

"scripts": [
           "../node_modules/jquery/dist/jquery.min.js",
           "../node_modules/jquery-ui-dist/jquery-ui.js"
        ]
0