安卓正常录音 但是ios手机 就录音失败
错误信息如下 "stopRecord: the permission value offline verifying"
// 长按录音
this.timer = setInterval(() => {
wx.startRecord()
}, 100)
// 停止长按后 停止录音
wx.stopRecord({
fail: (res) => {
console.log(res)
this.$toast.center('录音失败')
},
success: (res) => {
let localId = res.localId
this.recordID = localId
console.log(localId)
wx.uploadVoice({
localId: this.recordID, // 需要上传的音频的本地ID,由stopRecord接口获得
isShowProgressTips: 1, // 默认为1,显示进度提示
success: (res) => {
this.serverId = res.serverId //返回音频的服务器端ID
console.log(this.serverId)
},
})
},
})
再测测别的ios