小程序{errCode: 10001, errMsg: "errCode:602, err:error, not found param"} 问题解决

用innerAudioContext做音频播放时报错,点击一次无法正常播放,需要点击多次.百度没有找到答案,还是得看文档.

会报错的写法:

//播放声音

play: function() {

var that = this;

console.log('点击了试听按钮');

if (!(that.data.isCanRestart)) {

app.showToast('还没有完成朗读')

return;

}

if (!isRecording || tempPath != '') {

innerAudioContext.play(); //兼容起见用它

innerAudioContext.src = tempPath,

innerAudioContext.onPlay(() => {

console.log('开始播放')

})

innerAudioContext.onError((res) => {

console.log(res.errMsg)

console.log(res.errCode)

})

} else {

app.showToast('无法播放,请稍后重试');

 

}

}

 需要用到onCanplay的回调,可以播放之后再进行播放

//播放声音

play: function() {

var that = this;

console.log('点击了试听按钮');

if (!(that.data.isCanRestart)) {

app.showToast('还没有完成朗读')

return;

}

if (!isRecording || tempPath != '') {

innerAudioContext.src = tempPath,

innerAudioContext.onPlay(() => {

console.log('开始播放')

})

innerAudioContext.onError((res) => {

console.log(res.errMsg)

console.log(res.errCode)

})

innerAudioContext.onCanplay(() => {

console.log("onCanplay")

innerAudioContext.play(); //兼容起见用它

})



 

} else {

app.showToast('无法播放,请稍后重试');

}

}

})

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值