01 2021 档案

摘要:错误详情 $ git branch --set-upstream-to=origin/main main error: the requested upstream branch 'origin/main' does not exist hint: hint: If you are planning 阅读全文
posted @ 2021-01-27 17:30 Syinho 阅读(3242) 评论(0) 推荐(1) 编辑
摘要:错误详情 在html文件中添加<img>标签,并写入src属性后打包报错 ERROR in Error: C:\Users\12203\Desktop\webpack-practice\05_打包图 片资源\src\index .html:97 /******/ if (!scriptUrl) th 阅读全文
posted @ 2021-01-27 15:22 Syinho 阅读(801) 评论(0) 推荐(0) 编辑
摘要:进入需要树状表示的当前文件夹 以C:\Users\12203\Desktop\webpack-practice\05_打包图片资源文件夹为例 cd C:\Users\12203\Desktop\webpack-practice\05_打包图片资源 调用tree>file.txt命令 在当前文件夹下创 阅读全文
posted @ 2021-01-27 15:02 Syinho 阅读(288) 评论(0) 推荐(0) 编辑
摘要:错误详情 ERROR in ./main.js Module build failed (from ./node_modules/babel-loader/lib/index.js): Error: Cannot find module '@babel/core' 报错时的package.json部 阅读全文
posted @ 2021-01-25 21:33 Syinho 阅读(3735) 评论(0) 推荐(0) 编辑
摘要:开发依赖版本 "devDependencies": { "css-loader": "^5.0.1", "mini-css-extract-plugin": "^1.3.4", "style-loader": "^2.0.0", "webpack": "^5.17.0", "webpack-cli" 阅读全文
posted @ 2021-01-25 16:58 Syinho 阅读(159) 评论(0) 推荐(0) 编辑
摘要:开发依赖版本 "devDependencies": { "css-loader": "^5.0.1", "mini-css-extract-plugin": "^1.3.4", "style-loader": "^2.0.0", "webpack": "^5.17.0", "webpack-cli" 阅读全文
posted @ 2021-01-24 18:09 Syinho 阅读(840) 评论(0) 推荐(0) 编辑
摘要:错误详情 The 'mode' option has not been set, webpack will fallback to 'production' for this value. Set 'mode' option to 'development' or 'production' to e 阅读全文
posted @ 2021-01-23 16:49 Syinho 阅读(218) 评论(0) 推荐(0) 编辑
摘要:## 错误详情 当调用webpack命令进行打包时,出现如下命令 ERROR in ./main.css (./node_modules/css-loader/dist/cjs.js?minimize!./main.css) Module build failed (from ./node_modu 阅读全文
posted @ 2021-01-22 22:40 Syinho 阅读(547) 评论(0) 推荐(0) 编辑
摘要:--save命令 简述 --save是默认命令,当使用npm install [fileName]命令时默认调用,此命令会把下载文件的信息记录至package.json的dependencies属性中。 简写命令 -S --save-dev命令 简述 --save-dev会把信息记录至devDepe 阅读全文
posted @ 2021-01-21 17:45 Syinho 阅读(321) 评论(0) 推荐(0) 编辑
摘要:data: { datas: { a: 77, b: 86 } } 使用deep:true深层次监听 'datas':{ handler:function(newVal){ console.log(this.datas); }, deep:true } 监听某一个具体的属性 'datas.a':{ 阅读全文
posted @ 2021-01-16 17:57 Syinho 阅读(675) 评论(0) 推荐(0) 编辑
摘要:事件描述 当选中文本时触发所在元素的select事件。 兼容性以及区别:在IE9+和现代浏览器中,只有当用户选择了文本且松开鼠标左键后才会触发该事件。在IE8及以下浏览器中,每当用户选择一个字符就会触发一次select事件。 兼容性示例 <input type="text" id="a" value 阅读全文
posted @ 2021-01-10 10:19 Syinho 阅读(1913) 评论(0) 推荐(0) 编辑
摘要:查看暂存区文件 git ls-files 还原暂存区的文件 当自己在工作区修改或删除某一指定文件,但该文件有一个版本已经上传至暂存区时,可以通过git restore [fileName]将暂存区文件的复制加入到当前工作区。如果该文件被删除,则该文件会被复原;如果该文件被修改,那么文件就会回到修改前 阅读全文
posted @ 2021-01-07 18:40 Syinho 阅读(2662) 评论(0) 推荐(1) 编辑