我正在尝试将此https://github.com/ShinDarth/Nestable jquery插件用于嵌套拖放功能。我已经从npm install jquery --save
安装了jquery
和来自npm install @types/jquery --save-dev
我在我的组件中声明了import * as $ from 'jquery';
,并将插件文件包含在index.html
页面中。
这是我的组件代码:
import { Component, OnInit,AfterViewInit,ElementRef } from '@angular/core';
import { MdDialog, MdDialogRef } from "@angular/material";
import { MediaUploadComponent } from '../helper-component/media-upload/media-upload.component';
import * as $ from 'jquery';
// import 'jquery';
// declare const $: JQueryStatic;
// declare var $:any;
// import $ from "jquery";
@Component({
selector: 'app-appearance',
templateUrl: './appearance.component.html',
styleUrls: ['./appearance.component.css']
})
export class AppearanceComponent implements OnInit ,AfterViewInit{
private selectedOption:string ;
site_icon:any;
constructor() { }
ngOnInit() {
}
ngAfterViewInit(){
// jquery plugin nestable
$('.nestable').nestable();
//console.log(jQuery.fn.jquery);
}
}
我该如何解决这个问题?
[我已经尝试将jquery链接包含在cdn中的索引页面但显示相同的错误]
的index.html
!doctype html>
<html>
<head>
<meta charset="utf-8">
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="../assets/bootstrap.min.css">
<!--<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script> -->
<script src="../assets/nestable/jquery.nestable.js"></script>
<script src="../assets/nestable/jquery.nestable++.js"></script>
</head>
....
答案 0 :(得分:7)
最终,您需要在jquery
angular-cli.json
和其他库
scripts: [
"../node_modules/jquery/dist/jquery.min.js",
"../assets/nestable/jquery.nestable.js",
"../assets/nestable/jquery.nestable++.js"
]
只有在您重新启动ng serve
后才能应用这些更改。
编辑:如需进一步阅读和解释,本文可能会有所帮助https://github.com/angular/angular-cli/wiki/stories-global-scripts