上一页 1 2 3 4 5 6 7 8 ··· 16 下一页
摘要: ``` /* 滚动条 */ body *::-webkit-scrollbar { width: 5px; height: 10px; } body *::-webkit-scrollbar-track { background: #fff; border-radius: 2px; } body * 阅读全文
posted @ 2023-05-29 21:35 皮豪 阅读(504) 评论(0) 推荐(0) 编辑
摘要: ``` ``` 阅读全文
posted @ 2023-05-29 21:29 皮豪 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 如下代码,建议用这个,e.keyCode 已经过时,后面都是用 e.key:string. onMounted(() => { window.addEventListener('keydown', (e) => { if (e.ctrlKey && e.key 's') { // 检查是否按下了 C 阅读全文
posted @ 2023-04-28 11:29 皮豪 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 需求:因为下载的nginx的文件地址是UUID组成的,要下载呢就需要用axios。然后结合我上一篇文章,把nginx的跨域打开。 http://localhost:8085/project_1/2023/04/27/C9E9CC592AF849F7BFA025F16E2271BD.sql https 阅读全文
posted @ 2023-04-27 23:18 皮豪 阅读(64) 评论(0) 推荐(0) 编辑
摘要: add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS'; add_header Access-Control-Allow-Headers 'DNT,X 阅读全文
posted @ 2023-04-27 23:16 皮豪 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 前端接收的时间为字符串也可以使用这样。 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime endTime; 阅读全文
posted @ 2023-04-23 16:43 皮豪 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 就是代码写的不规范 报错写法 import {Setting} from '@element-plus/icons-vue' import { defineProps ,withDefaults } from 'vue' import {PiProject} from '@/types/Projec 阅读全文
posted @ 2023-04-22 22:11 皮豪 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 肯定能解决,哈哈哈,找了这么多,你这次你找对了文章。 网络上的这个资料都是有问题的,没有讲明白原由。 需求,我想在我前端的业务层里使用 store,但是是持久层store,不过没有生效。 下面是错误的写法,这个写是不生效的。 import { useGlobalStore } from '@/sto 阅读全文
posted @ 2023-04-22 13:02 皮豪 阅读(1669) 评论(0) 推荐(0) 编辑
摘要: 需求: 在使用el-input时不允许使用空格 <el-input v-model.trim="data"></el-input> 阅读全文
posted @ 2023-04-22 09:53 皮豪 阅读(85) 评论(0) 推荐(0) 编辑
摘要: public class LoginInterceptor implements HandlerInterceptor { @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse respo 阅读全文
posted @ 2023-04-21 15:28 皮豪 阅读(152) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 16 下一页