stopRecord总是失败?
微信JSSDK wx.stopRecord真机上调用总是报错:stopRecord:the permission value is offline verifying
wx.startRecord能够成功,确认wx.config正确调用且jsApiList包含stopRecord
wx.config({
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: ticket.appId, // 必填,公众号的唯一标识
timestamp: ticket.timestamp, // 必填,生成签名的时间戳
nonceStr: ticket.nonceStr, // 必填,生成签名的随机串
signature: ticket.signature,// 必填,签名,见附录1
jsApiList: [ // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
'startRecord',
'stopRecord',
'translateVoice',
'onVoiceRecordEnd',
'playVoice',
'pauseVoice',
'stopVoice',
'onVoicePlayEnd',
'uploadVoice'
]
});
wx.ready(() => {
console.log("ready");
wx.onVoiceRecordEnd({
complete: function (res) {
self.endRecord(res.localId);
}
});
});
wx.error((res) => {
console.log(res);
}