问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug audio 工具 - 2.3.0
使用微信小程序录音功能,录音完成,使用audio进行播放,可以正常使用自动停止,并执行事件。
但是
把audio上传到服务端之后
回头再播放的时候就不能正常使用自动停止事件了,不会执行audio.onEnded事件?
怎么回事?
class PlayVoice {
constructor() {
this.src = '';
this.innerAudioContext = null;
}
// 播放
playVoice(temppath) {
console.log(temppath)
console.log(temppath)
this.innerAudioContext && this.innerAudioContext.destroy();
this.innerAudioContext = wx.createInnerAudioContext();
this.src = this.innerAudioContext.src = temppath;
this.src && this.stopVoice(this.src);
this.innerAudioContext.play();
}
// 自动播放停止
endVoice(fn) {
console.log('自动播放停止', fn)
console.log('ddjhsajhj',this.innerAudioContext.onEnded)
this.innerAudioContext.onEnded((res) => {
console.log(789798)
fn && fn()
})
}
// 停止播放
stopVoice(temppath) {
this.innerAudioContext.src = temppath;
this.innerAudioContext.stop();
}
}
播放代码如上。
-----------
求解
在线等~急急急~
微信小程序开发问题解答
微信小程序开发者回答:
提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
本文网址:http://www.91bianli.com/kaifazhinan/76119.html