InnerAudioContext.offStop
解释:取消监听 onStop 事件
方法参数
Function callback
示例
扫码体验
请使用百度APP扫码
图片示例
代码示例
- 在 swan 文件中
<view class="container">
<view class="card-area">
<button type="primary" bindtap="offStop">offStop</button>
</view>
</view>
- 在 js 文件中
Page({
onLoad() {
let that = this;
const innerAudioContext = swan.createInnerAudioContext();
innerAudioContext.src = 'https://vd3.bdstatic.com/mda-ic7mxzt5cvz6f4y5/mda-ic7mxzt5cvz6f4y5.mp3';
innerAudioContext.autoplay = false;
innerAudioContext.onStop(res => {
swan.showModal({
title: 'onStop',
content: JSON.stringify(res)
});
console.log('onStop', res);
});
innerAudioContext.onEnded(res => {
innerAudioContext.offStop();
});
this.innerAudioContext = innerAudioContext;
this.innerAudioContext.play();
},
offStop(){
swan.showModal({
title: 'offStop',
content: '取消监听成功'
});
this.innerAudioContext.offStop();
}
});