InnerAudioContext.offError

解释:取消监听 offError 事件

方法参数

Function callback

示例

在开发者工具中预览效果

扫码体验

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

图片示例

InnerAudioContext.offError - 图2

InnerAudioContext.offError - 图3

InnerAudioContext.offError - 图4

代码示例

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