我正在使用Angular2,我想要包含jQuery。
systemjs.config.js
(function (global) {
System.config({
paths: {
'npm:': 'node_modules/',
'jquery': "//code.jquery.com/jquery-2.1.4.min.js"
},
meta: {
bootstrap: {
deps: ['jquery']
}
},
.....
}
在 app.module.ts 中,我收到错误:当我找不到模块' jquery' 把:
import $ from 'jquery';
我尝试使用地图而不是路径,但结果相同..
答案 0 :(得分:1)
正确的代码是..
import * as $ from 'jQuery';
你也应该映射到CDN吗?
什么时候不通过NodeJS获取jQuery或者在本地保存jQuery并映射到它?