InnerAudioContext.offCanplay
Function callback
示例
请使用百度APP扫码
- 在 swan 文件中
- 在 js 文件中
onLoad() {
innerAudioContext.src = 'https://vd3.bdstatic.com/mda-ic7mxzt5cvz6f4y5/mda-ic7mxzt5cvz6f4y5.mp3';
innerAudioContext.autoplay = false;
innerAudioContext.onCanplay(res => {
swan.showModal({
title: 'onCanplay',
});
console.log('onPlay', res);
});
this.innerAudioContext = innerAudioContext;
this.innerAudioContext.play();
},
swan.showModal({
title: 'offCanplay',
content: '取消监听成功'
});
this.innerAudioContext.offCanplay();
});