血翼残飞

导航

1 2 3 4 5 ··· 8 下一页

2025年4月9日 #

idea 开启Run Dashboard

摘要: 找到.idea下面的workspace.xml文件 打开workspace.xml文件之后,找到component为RunDashboard的节点处,然后在component标签里添加: <component name="RunDashboard"> <option name="ruleStates 阅读全文

posted @ 2025-04-09 16:34 血翼残飞 阅读(55) 评论(0) 推荐(0)

2024年11月20日 #

uniapp开发微信小程序,访问oss防盗链视频资源,加了白名单 , 由于视频的请求中缺少reffer信息 导致视频无法播放,再video 组件 添加referrer-policy="origin" 解决

摘要: <video id="myVideo" :src="currentSection.filePath" autoplay="false" referrer-policy="origin" > </video> 阅读全文

posted @ 2024-11-20 15:20 血翼残飞 阅读(357) 评论(0) 推荐(0)

2024年11月13日 #

滚动条样式

摘要: ::-webkit-scrollbar { width: 6px; height: 6px; } ::-webkit-scrollbar-track { background-color: #f1f1f1; } ::-webkit-scrollbar-thumb { background-color 阅读全文

posted @ 2024-11-13 10:16 血翼残飞 阅读(12) 评论(0) 推荐(0)

2024年11月12日 #

vue 安装所有依赖

摘要: npm i 让npm忽略项目中引入的相同modules但不同版本的问题,让引入的依赖不同的版本共存。 cnpm install --legacy-peer-deps 或 yarn install --checkfiles 阅读全文

posted @ 2024-11-12 18:22 血翼残飞 阅读(17) 评论(0) 推荐(0)

2024年10月10日 #

uniapp引入阿里矢量图

摘要: 1.阿里矢量图 加入项目,选择iconfont下载 2.选择iconfont.css,iconfont.ttf 放入static目录 3.修改iconfont,url注意添加 ~@ 不然找不到 4.app.vue 全局引入 5.页面中使用 <view class='exam exam-video'> 阅读全文

posted @ 2024-10-10 11:28 血翼残飞 阅读(244) 评论(0) 推荐(0)

2024年4月12日 #

element-plus npm版本过高或者过低的时候下载过程中可能会报错

摘要: npm install element-plus --S --legacy-peer-deps 阅读全文

posted @ 2024-04-12 13:27 血翼残飞 阅读(108) 评论(0) 推荐(0)

2024年1月15日 #

docker时区

摘要: 1.修改docker容器系统时间 ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 重启容器 若不行 2.修改JVM获取时间的文件 RUN echo "Asia/Shanghai" > /etc/timezone 阅读全文

posted @ 2024-01-15 19:40 血翼残飞 阅读(11) 评论(0) 推荐(0)

2023年10月26日 #

mysql 数据库修改sql查询链接时长

摘要: mysql url链接配置keepAlive=true&connectTimeout=30000&socketTimeout=60000 阅读全文

posted @ 2023-10-26 11:10 血翼残飞 阅读(24) 评论(0) 推荐(0)

2023年9月21日 #

若依 vue问题

摘要: 1.table 列 对布尔的处理 <el-table-column label="是否可见" align="center" prop="activityVisible" :formatter="formatActivityVisible"/> formatActivityVisible:functi 阅读全文

posted @ 2023-09-21 11:09 血翼残飞 阅读(26) 评论(0) 推荐(0)

2023年4月18日 #

vue+springboot 传list

摘要: @PostMapping(value = "/aa") public Result<?> aa(@RequestBody List<Map<String, Object>> list) { return Result.ok(); } let dataSource = [];postAction(th 阅读全文

posted @ 2023-04-18 16:58 血翼残飞 阅读(164) 评论(0) 推荐(0)

1 2 3 4 5 ··· 8 下一页