博主首页
摘要: git提交信息规范化 2021-08-16 16:59:48 当我们编写完代码 ,提交到远程仓库的时候,一般会用到git提交。 commit之前需要写commit message, 对应的类型有: build:影响构建系统或者外部依赖关系的更改 ci:更改我们的持续集成文件和脚本 docs:仅文档更 阅读全文
posted @ 2022-08-23 16:24 笑~笑 阅读(26) 评论(0) 推荐(0) 编辑
摘要: @JsonProperty("fQpbh") 加个注解吧 其实就是转json的时候变了 阅读全文
posted @ 2024-03-22 17:15 笑~笑 阅读(6) 评论(0) 推荐(0) 编辑
摘要: error commander@12.0.0: The engine "node" is incompatible with this module. Expected version ">=18". Got "14.21.3" error Found incompatible module. 这个 阅读全文
posted @ 2024-03-11 09:36 笑~笑 阅读(1246) 评论(0) 推荐(1) 编辑
摘要: 1、添加idea支持vue的插件 2、安装node.js 3、安装npm 4、确定好node和npm对应的版本是否兼容 5、安装yarn ;可以查一下yarn和npm的区别 6、yarn 的运行命令 阅读全文
posted @ 2024-03-08 14:12 笑~笑 阅读(77) 评论(0) 推荐(0) 编辑
摘要: SELECT t1.id,t1.eng_id,t1.work_type,t1.is_finish,t1.staff_id, t2.DESIGN_RESULT_ID,t2.SUBMIT_ID,t2.DEPT_TYPE from t_asse_design_work_todo t1 LEFT JOIN 阅读全文
posted @ 2024-02-29 13:48 笑~笑 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 文件的名称为 log4j.properties , 文件中的内容设置为: log4j.rootLogger=WARN, stdoutlog4j.appender.stdout=org.apache.log4j.ConsoleAppenderlog4j.appender.stdout.layout=o 阅读全文
posted @ 2024-02-29 11:16 笑~笑 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Improperly specified VM option. To fix the problem, edit your JVM options andremove the options that are obsolete or not supported by the current vers 阅读全文
posted @ 2024-02-27 16:14 笑~笑 阅读(37) 评论(0) 推荐(0) 编辑
摘要: $("#jq1").css({"color": "black"}); 阅读全文
posted @ 2024-02-20 11:04 笑~笑 阅读(1) 评论(0) 推荐(0) 编辑
摘要: <audio id="ad" src="mp3/123.mp3"> </audio> function mp3To(){ let byId = document.getElementById("ad"); byId.play();//开始播放 } function mp3ToEnd(){ let b 阅读全文
posted @ 2024-02-20 10:28 笑~笑 阅读(34) 评论(0) 推荐(0) 编辑
摘要: $("#dl").click(function () { alert(123); }) 阅读全文
posted @ 2024-02-19 15:50 笑~笑 阅读(2) 评论(0) 推荐(0) 编辑
摘要: $.ajax({ url: "http://192.168.0.59:8081/t1/count", // 要发送请求的URL type: "GET", // 请求类型(默认为GET) dataType: "json", // 服务器返回的数据格式(默认为智能判断) data: {}, // 传递到 阅读全文
posted @ 2024-02-19 15:15 笑~笑 阅读(4) 评论(0) 推荐(0) 编辑