摘要: This solved it for me npm cache clean --force then run npm install -g @angular/cli@latest ng new 'your-angular-app-name' 阅读全文
posted @ 2019-07-14 16:13 begin256 阅读(408) 评论(0) 推荐(0) 编辑
摘要: solve method: change const CleanWebpackPlugin=require('clean-webpack-plugin') to const CleanWebpackPlugin=require('clean-webpack-plugin') to const {Cl 阅读全文
posted @ 2019-06-29 20:25 begin256 阅读(378) 评论(0) 推荐(0) 编辑
摘要: solveing method: fixed the issue by adding -g flag to the installation command. use command: npm i optimize-css-assets-webpack-plugin -g -D 阅读全文
posted @ 2019-06-29 18:54 begin256 阅读(1591) 评论(0) 推荐(0) 编辑
摘要: 使用以下命令安装依赖: npm i webpack-dev-server -D 阅读全文
posted @ 2019-06-29 15:42 begin256 阅读(8047) 评论(0) 推荐(0) 编辑
摘要: 1.pc端中后台应用打包 npm组件在浏览器的js中不能直接引入,所以要借助webpack等工具 jsx在浏览器端也是无法直接解析,要用工具转换 页面打包速度和资源体积问题 4.构建工具需要原因: 转换es6语法、JSX css前缀补全/预处理器 压缩混淆 图片压缩 5.webpack原因 gith 阅读全文
posted @ 2019-06-07 12:38 begin256 阅读(590) 评论(0) 推荐(0) 编辑
摘要: 结论:const定义的基本类型不能改变,但是定义的对象是可以通过修改对象属性等方法来改变的。 例子: 1. const aa=trueaa=falseconsole.log(aa)VM1089:2 Uncaught TypeError: Assignment to constant variable 阅读全文
posted @ 2019-05-26 12:55 begin256 阅读(9161) 评论(1) 推荐(0) 编辑
摘要: >git常用命令整理,个别难的命令,结合git给的提示,多数可以搞定: git add . //提交所有改动文件 git commit -m "change content" //说明改动内容 git pull git push git push origin git branch -a git c 阅读全文
posted @ 2019-03-28 13:57 begin256 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 效果: 代码: import React from 'react'; import { Table } from 'antd'; import DatePicker1 from './DatePicker'; const pieArrs = [ {place_id: 3}, {place_id: 3 阅读全文
posted @ 2019-03-15 20:12 begin256 阅读(1578) 评论(0) 推荐(0) 编辑
摘要: question is caused by react version, update your react version, it will be ok. use "npm update react" and ""npm update react-dom"" //before: "react": 阅读全文
posted @ 2018-12-18 15:42 begin256 阅读(2599) 评论(0) 推荐(0) 编辑