InnerAudioContext.onWaiting

解释:音频加载中事件,当音频因为数据不足,需要停下来加载时会触发 。

方法参数

Function callback

示例

在开发者工具中预览效果

扫码体验

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

图片示例

InnerAudioContext.onWaiting - 图2

InnerAudioContext.onWaiting - 图3

InnerAudioContext.onWaiting - 图4

代码示例

  • 在 swan 文件中
  1. <view class="container">
  2. <view class="card-area">
  3. 此页面在遇到音频加载时会弹窗提示
  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.onWaiting(res => {
  7. swan.showModal({
  8. title: 'onWaiting',
  9. content: '正在加载,请耐心等待'
  10. });
  11. console.log('onWaiting', res);
  12. });
  13. this.innerAudioContext = innerAudioContext;
  14. this.innerAudioContext.play();
  15. }
  16. });