摘要:
视频地址 https://www.bilibili.com/video/BV1FE411M7pk?p=34 其他相关文档 https://blog.csdn.net/a704397849/article/details/90216739 https://segmentfault.com/a/1190 阅读全文
摘要:
话不多说,直接上菜 https://zhuanlan.zhihu.com/p/25849543 数组的循环操作 https://zhuanlan.zhihu.com/p/112006700 https://www.cnblogs.com/wangdashi/p/9431860.html 17个数组函 阅读全文
摘要:
两者的概念有点模糊 import Recorder from 'js-audio-recorder' let formData = new FormData() let blob = this.vpRecorder.getWAVBlob()// 获取wav格式音频数据 console.log('获取 阅读全文
摘要:
导出文本,一般分为两种 1.插件的方法 2.非插件的方法 使用非插件的方法 //导出文本 exportText() { const blob = new Blob([ this.$refs.txt.value]) let date=new Date(); const fileName = '识别文本 阅读全文
摘要:
npm install --save mitt ###方式1,全局总线,vue 入口文件 main.js 中挂载全局属性。 import { createApp } from 'vue';import App from './App.vue';import mitt from "mitt" cons 阅读全文
摘要:
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 阅读全文
摘要:
/* flex 布局 */ .flex { /* #ifndef APP-PLUS-NVUE */ display: flex; /* #endif */ flex-direction: row; } .flex-row { flex-direction: row!important; } .fle 阅读全文
摘要:
###一:js对象,按某个属性,进行分组。 //data是要被分组的数据[],key是分组依据的关键字,原文链接:https://blog.csdn.net/weixin_36339245/article/details/103522998 function getGroup(data, key) 阅读全文
摘要:
https://zhuanlan.zhihu.com/p/25738497 阅读全文
摘要:
这里主要介绍使用form-data的格式进行上传, uni.chooseImage({ count: 1, sizeType: ['original', 'compressed'], success: res => { uni.uploadFile({ url: '后端接口地址', filePath 阅读全文