抖音开放平台Logo
开发者文档
控制台

InnerAudioContext.offPlay
收藏
我的收藏

基础库 1.0.0 开始支持本方法,这是一个同步方法。

取消监听 play 事件。

前提条件
业务背景
使用限制
注意事项
相关教程

语法

InnerAudioContext.offPlay(callback)

参数说明

callback

类型默认值必填说明最低支持版本
function
取消回调的方法
1.0.0

返回值

错误码

errorCodeerrMsgerrorType说明最低支持版本
999993internal errorF
小游戏框架内部错误,有需要请创建工单咨询
1.0.0

代码示例

音频开始播放时没有弹窗提示。
const dataUrl = "https://someaudiourl"; // 合法的音频资源地址 const innerAudioContext = tt.createInnerAudioContext(); innerAudioContext.autoplay = true; innerAudioContext.src = dataUrl; innerAudioContext.onError((error) => { tt.showModal({ title: "播放出错", content: `详细错误信息:${error.errMsg}`, }); console.log("播放出错", error); }); function onplay() { tt.showToast({ title: "开始播放" }); } innerAudioContext.onPlay(onplay); innerAudioContext.offPlay(onplay);