InnerAudioContext.offStop

解释:取消监听 onStop 事件

方法参数

Function callback

示例

在开发者工具中预览效果

扫码体验

InnerAudioContext.offStop - 图1请使用百度APP扫码

图片示例

InnerAudioContext.offStop - 图2

InnerAudioContext.offStop - 图3

InnerAudioContext.offStop - 图4

代码示例

  • 在 swan 文件中
  1. <view class="container">
  2. <view class="card-area">
  3. <button type="primary" bindtap="offStop">offStop</button>
  4. </view>
  5. </view>
  • 在 js 文件中
  1. Page({
  2. onLoad() {
  3. let that = this;
  4. const innerAudioContext = swan.createInnerAudioContext();
  5. innerAudioContext.src = 'https://vd3.bdstatic.com/mda-ic7mxzt5cvz6f4y5/mda-ic7mxzt5cvz6f4y5.mp3';
  6. innerAudioContext.autoplay = false;
  7. innerAudioContext.onStop(res => {
  8. swan.showModal({
  9. title: 'onStop',
  10. content: JSON.stringify(res)
  11. });
  12. console.log('onStop', res);
  13. });
  14. innerAudioContext.onEnded(res => {
  15. innerAudioContext.offStop();
  16. });
  17. this.innerAudioContext = innerAudioContext;
  18. this.innerAudioContext.play();
  19. },
  20. offStop(){
  21. swan.showModal({
  22. title: 'offStop',
  23. content: '取消监听成功'
  24. });
  25. this.innerAudioContext.offStop();
  26. }
  27. });