- web–view嵌套h5点击不能返回?
跳转h5页面不能返回到小程序里面
2022-09-20 - web–view嵌套h5点击不能返回?
跳转h5页面不能返回到小程序里面
2022-09-20 - 小程序根据http地址跳转小程序?
小程序现在可以根据http地址跳转小程序吗?
2021-12-09 - 录音onFrameRecorded转base64,WebSocket连接不能发送消息?
录音onFrameRecorded转base64,WebSocket连接不能发送实时消息,固定内容可以
2021-11-10 - 录音分片数据类型ArrayBuffer用Uint8Array使用WebSocket发送消息失败?
录音分片数据类型ArrayBuffer用Uint8Array使用WebSocket发送消息失败,麻烦帮忙看看怎么回事 recordOptions : { duration: 600000,//录音的时长单位ms sampleRate: 16000,//采样率 numberOfChannels: 1,//录音通道数 encodeBitRate: 64000,//编码码率 format: 'mp3',//音频格式 frameSize: 6 }, this.socketTask=uni.connectSocket({ url:'地址' header: { 'content-type': 'application/json' }, method: "GET", success:res=>{ console.log('连接成功:',res) }, fail: (err) => { console.error('连接失败:',err) } }) this.socketTask.onOpen(res=>{ console.log('WebSocket连接已打开:',res); this.socketTask.onMessage((res)=>{ console.log('WebSocket服务器:',JSON.parse(res.data)); const data=JSON.parse(res.data); if(data.code==0){ recorderManager.start(this.recordOptions); } }) }) recorderManager.onFrameRecorded(res=>{ const arrayBuffer = new Uint8Array(res.frameBuffer); this.socketTask.send({ data:arrayBuffer, success:result=>{ console.log("录音分片:",res); console.log('WebSocket发送消息成功:',result); this.socketTask.onMessage((msg)=>{ console.log('发送消息成功反馈:',msg) }) }, fail: (err) => { this.socketTask.close(); console.error('WebSocket发送消息失败:',err); } }) })
2021-11-10 - 小程序安卓上面点击右上角的三个点复制链接是哪个api了
[图片]
2021-01-11 - 使用wx.choosevideo不能上传?
ios使用wx.choosevideo选择相册视频文件上传后台接收不到上传信息怎么解决 tapName(){ wx.chooseVideo({ compressed: true, sourceType: ['album', 'camera'], maxDuration: 60, success: res => { console.log(res) if (res.tempFilePath){ const uploadTask = wx.uploadFile({ url: ' ', name: 'file', filePath: res.tempFilePath, formData: { openid: 'x', title: "123", duration: res.duration,}, header: { "content-type": "multipart/form-data", }, // ios 11.2.5 success: data => { // console.log(data); console.log(data); if (JSON.parse(data.data).code==200){ wx.showToast({ title: '上传成功', }) }else{ wx.showToast({ title: JSON.parse(data.data).msg, }) } }, fail: res => { console.log(res); } }); uploadTask.onProgressUpdate(res => {//监听上传进度条 // console.log(res); console.log(res) }); } }, fail: (res) => { uni.showToast({ icon: "none", title: "亲,您取消了!" }) } }) },
2019-09-06