InnerAudioContext.offError收藏我的收藏
收藏
我的收藏基础库 1.0.0 开始支持本方法,这是一个同步方法。
取消监听音频播放错误事件。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 | 无 |
相关教程 | 无 |
语法
InnerAudioContext.offError(callback)
参数说明
callback
类型 | 默认值 | 必填 | 说明 | 最低支 持版本 |
---|---|---|---|---|
function | 否 | 取消回调的方法 | 1.0.0 |
返回值
无
扫码体验
请使用字节宿主APP扫码
代码示例
音频播放出错时没有弹窗提示。
const dataUrl = "https://someaudiourl"; // 合法的音频资源地址 const innerAudioContext = tt.createInnerAudioContext(); innerAudioContext.autoplay = true; innerAudioContext.src = dataUrl; function onerror(err) { tt.showModal({ title: "音频播放出错", content: `错误详细信息:${err.errMsg}`, }); } innerAudioContext.onError(onerror); innerAudioContext.offError(onerror);
点击纠错