使用以下方法将外部脚本包含在Angular应用程序中(示例中使用externalLib.js
)有什么区别,好处,优点和缺点:
通过脚本将脚本引用直接包含在index.html
文件中
标签:
<script src="../node_modules/jquery/dist/jquery.js"></script>
在angular-cli.json
数组中的scripts
文件中设置库的路径:
"scripts": [
"../node_modules/path/to/lib/externalLib.js"]
在资源文件夹
externalLib.js
个文件
醇>
此外,上述任何方法是否都支持强类型库(即自动处理externalLib.d.ts
?
感谢您的帮助。
答案 0 :(得分:2)