我是Angular 2中的新手,我有一个自定义CDN来加载我的Angular应用程序中的一些文件。我正在我的index.html
中加载此CDN并且所有文件都正确加载,但它会返回如下错误:
Uncaught TypeError: undefined is not a function!
at module.exports (_a-function.js:2)
at module.exports (_ctx.js:4)
at _array-methods.js:24
at Array.map (es6.array.map.js:8)
at Array.toArray (prototype.js:1074)
at module.exports (_iter-define.js:39)
at Object.<anonymous> (es6.array.iterator.js:11)
at __webpack_require__ (bootstrap 8d27006…:52)
at Object.<anonymous> (array.js:22)
at __webpack_require__ (bootstrap 8d27006…:52)
有关正在发生的事情的任何想法?在index.html
中加载CDN是否正确?
由于
答案 0 :(得分:0)
您必须认为Angular2适用于TypeScript而不是JavaScript,所以当您尝试在Angular2项目的CDN中使用这些库时,编译器可能无法识别代码。
顺便说一下,我也是Angular2的新手,但我相信这可能是事情。