摘要: 在MySQL创建数据库时,我们需要指定字符集charset和collation(排序规则),如果不指定,MySQL会自动指定为默认字符集charset和collation(排序规则)。 字符集charset是一套:符号和编码的映射集合。 collation(排序规则)则是关于查询和比较数据时所遵循的 阅读全文
posted @ 2022-01-24 17:39 芬尼克斯 阅读(719) 评论(0) 推荐(0) 编辑
摘要: windows 系统首次使用npm安装yarn后,运行yarn命令,报错: yarn : File C:\Users\mihao\AppData\Roaming\npm\yarn.ps1 cannot be loaded because running scripts is disabled on 阅读全文
posted @ 2022-01-19 19:21 芬尼克斯 阅读(762) 评论(0) 推荐(0) 编辑
摘要: 新系统运行git命令提示: git : The term 'git' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the na 阅读全文
posted @ 2021-12-25 20:07 芬尼克斯 阅读(1548) 评论(0) 推荐(0) 编辑
摘要: npm config set registry=https://registry.npmmirror.com --globalyarn config set registry https://registry.npmmirror.com --global# 查看本地镜像源npm config get 阅读全文
posted @ 2021-12-14 23:08 芬尼克斯 阅读(1302) 评论(0) 推荐(0) 编辑
摘要: Arpa Network Working Group Bob Metcalfe (PARC-MAXC) Request for Comments: 602 Dec 1973 NIC #21021 "The Stockings Were Hung by the Chimney with Care" T 阅读全文
posted @ 2021-10-26 08:42 芬尼克斯 阅读(77) 评论(0) 推荐(0) 编辑
摘要: function isInt(x) { return x % 1 0 } 阅读全文
posted @ 2021-09-28 15:10 芬尼克斯 阅读(128) 评论(0) 推荐(0) 编辑
摘要: function getPlate(total = 5) { let stateList = '京津冀晋辽吉沪苏浙皖闽琼赣鲁豫鄂湘粤渝川贵云陕甘蒙黑桂藏青宁新' let charList = 'ABCDEFGHJKLMNQPRSTUVWXYZ' let numList = '1234567890' 阅读全文
posted @ 2021-09-26 18:02 芬尼克斯 阅读(871) 评论(0) 推荐(0) 编辑
摘要: 1. 在druid jar包的目录下运行: java -cp druid-1.0.16.jar com.alibaba.druid.filter.config.ConfigTools you_password 控制台输出: privateKey:MIIBVAIBADANBgkqhkiG9w0BAQE 阅读全文
posted @ 2021-07-01 11:47 芬尼克斯 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 微信小程序报错:Cannot read property ‘forceUpdate‘ of undefined 阅读全文
posted @ 2021-06-29 00:16 芬尼克斯 阅读(2002) 评论(0) 推荐(0) 编辑
摘要: uni-app集成uView后 运行报错 VM93:5 app.js错误: TypeError: Cannot read property 'mark' of undefined 这是因为js语法兼容问题。 打开增强编译 的选项来增强 ES6转ES5 的能力,可以解决这个问题。 打开后问题解决。 阅读全文
posted @ 2021-04-01 16:28 芬尼克斯 阅读(1089) 评论(0) 推荐(0) 编辑