摘要: 启动项目时报如下错: 解决办法: //将node-sass更新到最新版本 ,如果npm run dev还报错版本冲突,就进入第二步 npm install node-sass -D npm rebuild node-sass --force 原因: npm build:构建一个包 npm rebui 阅读全文
posted @ 2020-07-03 14:28 Doclimb 阅读(1429) 评论(0) 推荐(0)
摘要: 问题:在进行bower install安装项目依赖时报以下错误: bower angular-animate#~1.4.2 ECMDERR Failed to execute "git ls-remote --tags --heads https://github.com/angular/bower 阅读全文
posted @ 2020-07-03 14:06 Doclimb 阅读(220) 评论(0) 推荐(0)
摘要: /*arr=['a','b'] 1、forEach >只遍历,不返回任何内容 arr.forEach(function(item,index,arr){}) 2、map >会返回回调函数中return的内容组成数组,这个数组的长度与原数组相同,而且按原数组对应位置返回内容 arr.map((item 阅读全文
posted @ 2020-07-03 13:55 Doclimb 阅读(188) 评论(0) 推荐(0)