微信小程序吧 关注:56,927贴子:695,898
  • 0回复贴,共1

调用了录音接口,真机测试有的能录音,有的不能录音,求大神指教

只看楼主收藏回复

代码如下,用的是官网的代码
//录音
longclickSound:function(){
wx.startRecord({
success: function (res) {
var tempFilePath = res.tempFilePath
wx.playVoice({
filePath: tempFilePath,
complete: function () {
}
})
},
fail: function (res) {
wx.showToast({
title: '录音失败',
icon: 'success',
duration: 2000
})
}
})
setTimeout(function () {
//结束录音
wx.stopRecord()
}, 10000)
},


IP属地:广东1楼2017-08-18 09:31回复