上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 54 下一页
摘要: 视频地址 https://www.bilibili.com/video/BV1FE411M7pk?p=34 其他相关文档 https://blog.csdn.net/a704397849/article/details/90216739 https://segmentfault.com/a/1190 阅读全文
posted @ 2022-03-13 01:02 风意不止 阅读(1145) 评论(0) 推荐(0) 编辑
摘要: 话不多说,直接上菜 https://zhuanlan.zhihu.com/p/25849543 数组的循环操作 https://zhuanlan.zhihu.com/p/112006700 https://www.cnblogs.com/wangdashi/p/9431860.html 17个数组函 阅读全文
posted @ 2022-02-24 11:46 风意不止 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 两者的概念有点模糊 import Recorder from 'js-audio-recorder' let formData = new FormData() let blob = this.vpRecorder.getWAVBlob()// 获取wav格式音频数据 console.log('获取 阅读全文
posted @ 2022-02-23 17:58 风意不止 阅读(2850) 评论(0) 推荐(0) 编辑
摘要: 导出文本,一般分为两种 1.插件的方法 2.非插件的方法 使用非插件的方法 //导出文本 exportText() { const blob = new Blob([ this.$refs.txt.value]) let date=new Date(); const fileName = '识别文本 阅读全文
posted @ 2022-02-22 16:14 风意不止 阅读(626) 评论(0) 推荐(0) 编辑
摘要: npm install --save mitt ###方式1,全局总线,vue 入口文件 main.js 中挂载全局属性。 import { createApp } from 'vue';import App from './App.vue';import mitt from "mitt" cons 阅读全文
posted @ 2022-01-12 11:44 风意不止 阅读(804) 评论(0) 推荐(0) 编辑
摘要: 1.数字验证,整数和或者两位小数 function isNumber( s ) { var regu = "^[0-9]+\.?[0-9]{0,2}$"; // var regu = "^[0-9]*$"; var re = new RegExp(regu); if (re.test(s)) { r 阅读全文
posted @ 2022-01-11 10:02 风意不止 阅读(37) 评论(0) 推荐(0) 编辑
摘要: /* flex 布局 */ .flex { /* #ifndef APP-PLUS-NVUE */ display: flex; /* #endif */ flex-direction: row; } .flex-row { flex-direction: row!important; } .fle 阅读全文
posted @ 2021-12-28 10:21 风意不止 阅读(158) 评论(0) 推荐(0) 编辑
摘要: ###一:js对象,按某个属性,进行分组。 //data是要被分组的数据[],key是分组依据的关键字,原文链接:https://blog.csdn.net/weixin_36339245/article/details/103522998 function getGroup(data, key) 阅读全文
posted @ 2021-12-16 09:51 风意不止 阅读(76) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/25738497 阅读全文
posted @ 2021-12-13 16:56 风意不止 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 这里主要介绍使用form-data的格式进行上传, uni.chooseImage({ count: 1, sizeType: ['original', 'compressed'], success: res => { uni.uploadFile({ url: '后端接口地址', filePath 阅读全文
posted @ 2021-12-08 20:12 风意不止 阅读(5560) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 54 下一页