摘要: 1.window.frames方式 frames[]是窗口中所有命名的框架组成的数组。这个数组的每个元素都是一个Window对象,对应于窗口中的一个框架。 <iframe name='forExcel'></iframe> window.frames["forExcel"].location.hre 阅读全文
posted @ 2020-09-30 10:44 Doclimb 阅读(1324) 评论(0) 推荐(0) 编辑
摘要: 启动项目时报如下错: 解决办法: //将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 阅读(1376) 评论(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 阅读(208) 评论(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 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 前面加 ~ 表示你后面的值为 alias, 然后就会去 webpack alias 配置中找相应的值, 然后拼接成最后的地址 引自:https://blog.csdn.net/qq_27970999/article/details/87823705 阅读全文
posted @ 2019-10-13 20:02 Doclimb 阅读(371) 评论(0) 推荐(0) 编辑
摘要: path模块实现对文件路径的解析 10 console.log(__filename) 11 path.format() :将一个js对象转换成路径 12 path.join() : 拼接多个路径成一个路径 阅读全文
posted @ 2019-10-13 19:45 Doclimb 阅读(118) 评论(0) 推荐(0) 编辑