摘要: 全局安装 npm install webpack -g 查看webpack版本 webpack -v如果没出现 安装webpack-cli(webpack 4x以上,webpack将命令相关的内容都放到了webpack-cli) npm install --global webpack-cli 阅读全文
posted @ 2020-11-08 21:54 小泽沐优声 阅读(1121) 评论(0) 推荐(0) 编辑
摘要: 随机生成验证码 const createCode = obj =>{ let code = ""; let codeLength = obj.numb||4; //验证码的长度 默认4 let random = new Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'A', 阅读全文
posted @ 2020-11-08 16:11 小泽沐优声 阅读(110) 评论(0) 推荐(0) 编辑