touchdown: function () {
// 开始录音
this.setData({
isSpeaking: true,
})
that.speaking.call();
recorderManager.onStop((res) => {
var tempFilePath = res.tempFilePath;
that.data.filePath = tempFilePath;
that.voiceToChar();
})
recorderManager.onError((res) => {
console.log(res)
wx.showModal({
title: '录音失败',
content: '换根手指再试一次!',
showCancel: false,
confirmText: '确定',
confirmColor: '#09BB07',
})
})
const options = {
duration: 60000,
sampleRate: 16000,
numberOfChannels: 1,
format: 'mp3'
}
recorderManager.start(options)
},
程序一直走在 recorderManager.onError 如果换个微信appid功能又没问题,看了下微信小程序后台也没说有地方设置禁用音频的地方啊。
微信小程序开发问题解答
微信小程序开发者回答:
提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
本文网址:http://www.91bianli.com/kaifazhinan/75674.html