摘要: 1.7 运行报错 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style 解决方法 eslintrc.js ->》rules rules: { "linebreak-style": [0 ,"error", "win 阅读全文
posted @ 2021-08-11 17:11 成强 阅读(449) 评论(0) 推荐(0) 编辑
摘要: [ { "key": "alt+i", "command": "cursorUp", "when": "textInputFocus" }, { "key": "up", "command": "cursorUp", "when": "textInputFocus" }, { "key": "alt 阅读全文
posted @ 2021-08-11 16:54 成强 阅读(1385) 评论(0) 推荐(0) 编辑
摘要: 首先在Vscode中安装一下Eslint 在settings.json中进行修改,加入以下代码即可。 "editor.codeActionsOnSave": { "source.fixAll.eslint": true, "eslint.autoFixOnSave" : true, }, 文件保存之 阅读全文
posted @ 2021-08-11 15:30 成强 阅读(3915) 评论(0) 推荐(0) 编辑
摘要: nvm for windows是一个命令行工具,在控制台输入nvm,就可以看到它的命令用法。基本命令有: nvm arch [32|64] : 显示node是运行在32位还是64位模式。指定32或64来覆盖默认体系结构。 nvm install [arch]: 该可以是node.js版本或最新稳定版 阅读全文
posted @ 2021-08-11 12:39 成强 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 报错信息:panic: While parsing config: yaml: line 9: mapping values are not allowed in 解决方法: 出现这个错误的是因为yaml格式不正确,谷歌定义的yaml格式太严格了,每个冒号后面都必须带有空格 阅读全文
posted @ 2021-08-11 11:22 成强 阅读(1130) 评论(0) 推荐(0) 编辑
摘要: 1.4 运行是报错 go get golang.org/x/crypto/bcrypt 阅读全文
posted @ 2021-08-10 17:31 成强 阅读(1207) 评论(0) 推荐(0) 编辑
摘要: 1.5 数据库打开关闭的基本操作 //dsn := "用户名:密码@tcp(主机:端口)/数据库名字?charset=字符类型&parseTime=True&loc=Local" sqlDB, _ := db.DB() defer sqlDB.Close() 阅读全文
posted @ 2021-08-10 09:13 成强 阅读(2344) 评论(0) 推荐(1) 编辑
摘要: 第一、检查硬盘设备是否有数据盘 # 先执行 fdisk -l # 以下是执行结果 Disk /dev/vda: 21.5 GB, 21474836480 bytes 255 heads, 63 sectors/track, 2610 cylinders Units = cylinders of 16 阅读全文
posted @ 2021-08-06 10:17 成强 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 问题解决 如果是用命令行环境的,采用命令 go run *.go 如果也是用goland开发的,鼠标同时选中main包下所有的文件,右键点击运行即 阅读全文
posted @ 2021-08-03 00:17 成强 阅读(1003) 评论(0) 推荐(0) 编辑
摘要: return SearchGroupRow(title, field_object.rel.model.objects.filter(**db_condition), self, request.GET) 修改为 return SearchGroupRow(title, field_object.r 阅读全文
posted @ 2021-08-01 17:33 成强 阅读(83) 评论(0) 推荐(0) 编辑