上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页
摘要: post请求接口: 由提示信息可知:与SSL签名证书有关 解决方案: 在Postman > setting > SSL开关关闭即可。 阅读全文
posted @ 2022-02-16 14:52 唏嘘- 阅读(6549) 评论(0) 推荐(0) 编辑
摘要: 正确写法: <if test="userCode != null and userCode !='' and userCode !='admin'.toString()"> 或者 <if test='userCode != null and userCode !="" and userCode != 阅读全文
posted @ 2022-02-14 11:19 唏嘘- 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 人员按照中文首字母排序 sql: select * from staff ORDER BY CONVERT(`name` USING gbk) mybatis-plus: orderByAsc("convert(" + name + " using gbk)") 阅读全文
posted @ 2022-02-11 16:19 唏嘘- 阅读(121) 评论(0) 推荐(0) 编辑
摘要: <el-table-column prop="created_on" label="创建时间" :formatter="formatDate"/> //格式化时间formatDate(row) { if (row.nextStartTime) { return row.nextStartTime.s 阅读全文
posted @ 2022-02-11 15:25 唏嘘- 阅读(438) 评论(0) 推荐(0) 编辑
摘要: 解决办法:window10 参考:https://blog.csdn.net/qq_41548644/article/details/111999269 git stash drop stash@`{0`} 阅读全文
posted @ 2022-02-11 14:55 唏嘘- 阅读(559) 评论(0) 推荐(0) 编辑
摘要: 使用场景:当在一个分支的开发工作未完成,却又要切换到另外一个分支进行开发的时候,可以先将自己写好的代码,储存在一个箱子里面 1、添加改动到 stash git stash save "名称" 2、查看当前stash中的内容 git stash list 3、将当前stash中的内容弹出,并应用到当前 阅读全文
posted @ 2022-02-11 14:54 唏嘘- 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 1、git add 命令可将该文件添加到暂存区。 git add . : 将修改操作的文件和未跟踪新添加的文件添加到git系统的暂存区,注意不包括删除。 git add -u : -u 表示将已跟踪文件中的修改和删除的文件添加到暂存区,不包括新增加的文件,注意这些被删除的文件被加入到暂存区再被提交并 阅读全文
posted @ 2022-02-11 14:36 唏嘘- 阅读(1168) 评论(0) 推荐(0) 编辑
摘要: 1、项目clone 到本地(克隆指定分支) git clone <-b 分支名> 地址 2、git仓库添加新的分支,本地查看不到新分支 git fetch origin --prune git remote update origin --prune git remote update origin 阅读全文
posted @ 2021-12-30 13:26 唏嘘- 阅读(192) 评论(0) 推荐(1) 编辑
摘要: 1、Windows 下 启动服务: net start mysql 关闭服务: net stop mysql 2、Linux下 启动服务: service mysql start 关闭服务: service mysql stop 阅读全文
posted @ 2021-12-19 11:23 唏嘘- 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 1、使用postman 进行post接口测试 { "timestamp": "2021-12-18T17:04:42.820+0000", "status": 415, "error": "Unsupported Media Type", "message": "Content type 'text 阅读全文
posted @ 2021-12-19 01:07 唏嘘- 阅读(1009) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页