02 2021 档案

摘要:辨别this的不同 const person1 = { name: 'Nicholas', age: 74, job: 'engineer', getDetail: function () { console.log(`${this.name} is a ${this.job} and is ${t 阅读全文
posted @ 2021-02-05 11:31 Syinho 阅读(76) 评论(0) 推荐(0) 编辑
摘要:错误详情 在使用babel-loader做js兼容性处理时,下载了如下三个包: "@babel/core": "^7.8.4", "@babel/preset-env": "^7.8.4", "babel-loader": "^8.0.6", webpack.config.js配置如下: { tes 阅读全文
posted @ 2021-02-03 22:47 Syinho 阅读(743) 评论(0) 推荐(0) 编辑
摘要:用途 用于检查自己的js源代码是否符合标准 需要下载的包 npm i eslint@6.8.0 eslint-loader@3.0.3 eslint-config-airbnb-base@14.2.1 eslint-plugin-import@2.22.1 -D package.json配置 "es 阅读全文
posted @ 2021-02-03 17:33 Syinho 阅读(109) 评论(0) 推荐(0) 编辑
摘要:发现问题 当我使用'mini-css-extract-plugin'进行css文件独立打包,使用'url-loader'对css中引用的图片文件等进行打包时,发现:在html中的<img>标签内的图片可以正常显示,但在css中写在background-image中的图片无法正常显示,package. 阅读全文
posted @ 2021-02-02 22:50 Syinho 阅读(543) 评论(1) 推荐(0) 编辑