Loading

摘要: 微信小程序 底部状态栏,自定义组件时,会出现闪烁情况,这个没有办法结局 https://blog.csdn.net/weixin_44221219/article/details/130790315?spm=1001.2101.3001.6650.1&utm_medium=distribute.pc 阅读全文
posted @ 2023-10-17 21:20 小小的编程员 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 使用前,需要在 微信开发者工具中的 setting.json 文件中,添加 "prettier.documentSelectors": ["/*.wxml", "/*.wxss"] 代码才可以使用 阅读全文
posted @ 2023-10-17 12:50 小小的编程员 阅读(356) 评论(0) 推荐(0) 编辑
摘要: git分支中, main 表示稳定版本, develop 为开发版 , dev-** 为开发具体功能的版本 所以, 开发时 一般在 dev-** 分支中, 提交到 develop 版本 开发功能步骤: git create branch and switch dev-*** 编码 git switc 阅读全文
posted @ 2023-10-17 12:42 小小的编程员 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 提取变量,声明父类型 在idea中提取变量 Ctrl + Alt + V 这个快捷键大家一定不陌生. 其用法不少,主要的用法就是先创建一个对象,然后通过提取变量快捷键快速的将对象赋值给自动声明的变量,如下: 先写对象的创建: new ArrayList() 然后按下 Ctrl + Alt + V , 阅读全文
posted @ 2023-10-06 19:45 小小的编程员 阅读(107) 评论(0) 推荐(0) 编辑
摘要: application.properties 为全局配置文件,默认加载这里的内容 application-dev.properties 为开发配置文件, 会覆盖 全局配置文件内容 application-test.properties 为测试配置文件,会覆盖 全局配置文件 application-p 阅读全文
posted @ 2023-09-21 12:38 小小的编程员 阅读(13) 评论(0) 推荐(0) 编辑
摘要: maven 添加更多版本的 archetype 阅读全文
posted @ 2023-09-21 09:01 小小的编程员 阅读(109) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/sinat_28631741/article/details/115634230 https://www.cnblogs.com/lc-blogs/p/17222065.html https://blog.csdn.net/weixin_45986798/ 阅读全文
posted @ 2023-06-12 16:00 小小的编程员 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1. 设置 ssh 公钥 参考连接 : 生成/添加SSH公钥 - Gitee.com win+r 输入 cmd,打开cmd 窗口 在 窗口中,输入 ssh-keygen -t ed25519 -C "xxxxx@xxxxx.com" xxxxx@xxxxx.com: 尽量为 自己的邮箱地址, 输入命 阅读全文
posted @ 2023-06-08 23:11 小小的编程员 阅读(558) 评论(0) 推荐(0) 编辑
摘要: ​ 解决:npm run serve 错误,或者 npm run build 错误 错误原因: 使用了 过高版本的 Node.js 解决办法: 本人电脑上安装了,nvm 可以快速的 安装node 的其他版本,当 降版本到 Node v16.14.1 时,才可以正常运行(太坑了) nvm 安装 v16 阅读全文
posted @ 2023-06-08 21:53 小小的编程员 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 千万注意: 配置完成后, 或者 添加修改 .prettierrc.js .prettierignore 后,需要重启项目!!! 重启项目!!! 不然 会 好多地方闪红 原理应该在于: 编译器 打开时 读取配置文件, 修改配置后需要 重载 才能修改运行配置 重载前: 重载后: vue中 使用 vue 阅读全文
posted @ 2023-06-08 21:50 小小的编程员 阅读(106) 评论(0) 推荐(0) 编辑