# InterstitialAd.offError

更新时间:2024-10-18 15:37:04

移除插屏错误事件的监听函数。

# offError(callback?: (event: InterstitialAdErrorEvent) => void): void

# 参数

参数 类型 必填 说明
callback (event: InterstitialAdErrorEvent) => void onError 传入的监听函数。不传此参数则移除所有监听函数。
InterstitialAdErrorEvent
属性
属性 类型 说明
errCode 4 | 1006 | 2003 | 2004 | 2005 | 2006 错误码
errMsg string 错误信息
errCode

错误码

说明
4 广告校验失败
1006 小程序启动一定时间内不允许展示插屏广告
2003 当前正在播放插屏广告,不允许再次展示插屏广告
2004 广告渲染失败
2005 插屏广告实例不允许跨页面调用
2006 插屏广告实例已经销毁

# 示例代码

const listener = function (res) { console.log(res) }
InterstitialAd.onError(listener)
InterstitialAd.offError(listener) // 需传入与监听时同一个的函数对象
Copyright ©2025, All Rights Reserved