如何在angular上安装第三方插件?

# 如何安装第三方插件,比如:jQuery.js 、Bootstrap.js、 Bootstrap.css

第一步安装:
>npm install bootstrap --save
>npm install jQuery --save
//注意:拿到这个工程后,除了 npm install外,还要安装bootstrap和jquery (因为安装时没有用--save)


第二步导入:
注意导入方法,导入到angular.json 文件的styles 和scripts
导入bootstrap.min.css 相对路径到styles中
导入bootstrap.min.js、jquery.min.js到scripts中去

"styles": [
"src/styles.css",
"node_modules/bootstrap/dist/css/bootstrap.min.css"
],
"scripts": [
"node_modules/bootstrap/dist/js/bootstrap.js.map",
"node_modules/jquery/dist/jquery.min.js"],
 
做实验时出现如下错误:
Cannot read property 'fn' of undefined     at bootstrap.min.js:6
 
出现此错误是由于:1.导入方法时,没有先导入jquery的方法
                                 2.安装bootstrap时,忘了用--save保存

猜你喜欢

转载自www.cnblogs.com/aiyamoer/p/10966108.html