InnerAudioContext.onCanplay
2020-08-26 16:27 更新
解释:音频进入可以播放状态,但不保证后面可以流畅播放 。
方法参数
Function callback
示例
图片示例
代码示例
<view class="wrap">
<view class="card-area">
监听音频是否可以开始播放
</view>
</view>
Page({
onLoad() {
const innerAudioContext = swan.createInnerAudioContext();
innerAudioContext.src = 'https://b.bdstatic.com/miniapp/images/yanyuan.mp3';
innerAudioContext.autoplay = false;
innerAudioContext.onCanplay(res => {
swan.showModal({
title: 'onCanplay',
content: JSON.stringify(res)
});
innerAudioContext.play();
console.log('onCanplay', res);
});
this.innerAudioContext = innerAudioContext;
}
});
以上内容是否对您有帮助:
更多建议: