上一页 1 2 3 4 5 6 ··· 17 下一页
摘要: 1、引入依赖 <dependency> <artifactId>velocity</artifactId> <groupId>org.apache.velocity</groupId> <version>1.7</version> </dependency> 简单使用 // 1、设置velocity 阅读全文
posted @ 2023-05-09 16:07 非帆丶 阅读(96) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <input type="file" ref="audioInput" @change="handleFileUpload"> <button @click="handleFileSelect">选择音频文件</button> <button @click="pla 阅读全文
posted @ 2023-03-09 17:33 非帆丶 阅读(582) 评论(0) 推荐(0) 编辑
摘要: private ResponseEntity<String> uploadFileToRemote(File file) throws IOException { String url = "http://example.com/upload"; RestTemplate restTemplate 阅读全文
posted @ 2023-03-07 11:11 非帆丶 阅读(2045) 评论(0) 推荐(0) 编辑
摘要: .card { height: 430px; width: 100%; background:#ffffff; border:1px solid #eaeefb; border-radius:5px; box-sizing: border-box; text-align: center; posit 阅读全文
posted @ 2023-01-06 16:06 非帆丶 阅读(133) 评论(0) 推荐(0) 编辑
摘要: const {width, height} = await this.getImgSize(base64) async getImgSize(base64) { const image = new Image() image.crossOrigin = '' image.src = base64 r 阅读全文
posted @ 2022-11-07 15:14 非帆丶 阅读(252) 评论(0) 推荐(0) 编辑
摘要: aDownload(url, fileName) { const link = document.createElement('a') link.style.display = 'none' link.href = url link.download = fileName // link.setAt 阅读全文
posted @ 2022-11-07 15:11 非帆丶 阅读(432) 评论(0) 推荐(0) 编辑
摘要: timeFormatting(val) { let time = val.slice(0, 10) // 兼容IOS time = time.replace(/-/g, '/') let date = new Date(time); let Y = date.getFullYear() let M 阅读全文
posted @ 2022-11-07 15:10 非帆丶 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 一、姓名脱敏 handleName(name) { let arr = Array.from(name) let result = '' if (arr.length 2) { result = arr[0] + '*' } else if (arr.length > 2) { for (let i 阅读全文
posted @ 2022-11-07 15:09 非帆丶 阅读(2895) 评论(0) 推荐(0) 编辑
摘要: http://www.wjhsh.net/smile-fanyin-p-15016684.html 阅读全文
posted @ 2022-08-25 11:19 非帆丶 阅读(62) 评论(0) 推荐(0) 编辑
摘要: npm view 包名 versions 阅读全文
posted @ 2022-08-24 17:35 非帆丶 阅读(115) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 17 下一页