血翼残飞

导航

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 血翼残飞 阅读(2) 评论(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 血翼残飞 阅读(1) 评论(0) 推荐(0) 编辑

2024年11月12日 #

vue 安装所有依赖

摘要: npm i 阅读全文

posted @ 2024-11-12 18:21 血翼残飞 阅读(1) 评论(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 血翼残飞 阅读(58) 评论(0) 推荐(0) 编辑

2024年4月12日 #

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

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

posted @ 2024-04-12 13:27 血翼残飞 阅读(73) 评论(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 血翼残飞 阅读(4) 评论(0) 推荐(0) 编辑

2023年10月26日 #

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

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

posted @ 2023-10-26 11:10 血翼残飞 阅读(15) 评论(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 血翼残飞 阅读(13) 评论(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 血翼残飞 阅读(139) 评论(0) 推荐(0) 编辑

2022年12月23日 #

pojo忽略表字段映射

摘要: @TableField(exist = false)//忽略表字段 阅读全文

posted @ 2022-12-23 16:27 血翼残飞 阅读(51) 评论(0) 推荐(0) 编辑