### 插屏广告 [插屏广告介绍](https://uniapp.dcloud.net.cn/component/ad-interstitial.html) **平台差异说明** |App|H5|微信小程序|支付宝小程序|百度小程序|字节跳动小程序、飞书小程序|QQ小程序|快手小程序|京东小程序| |:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:| |App 3.1.10+|x|√|x|x|x|√|x|x| **开通配置广告** [开通广告步骤详情](https://uniapp.dcloud.net.cn/uni-ad.html#start) ### 语法 `uni.createInterstitialAd(options)` ### 参数说明 `options` 为 object 类型,属性如下: |属性名 |类型 |必填 |描述 |最低支持版本 | |:-:|:-:|:-:|:-:|:-:| |adpid |string | 是|广告位 id |App 3.1.10+| |adUnitId |string | 是|广告位 id |微信小程序2.6.0+, QQ0.1.26+| HBuilder 基座的测试广告位 `adpid` 为 `1111111113` ### 广告创建 插屏广告组件默认是隐藏的,因此可以提前创建,以提前初始化组件。开发者可以在页面的 onReady 事件回调中创建广告实例,并在该页面的生命周期内重复调用该广告实例。 ### 显示/隐藏 插屏广告组件默认是隐藏的,开发者需要调用 InterstitialAd.show() 进行显示。如果广告拉取失败或触发频率限制,InterstitialAd.show() 方法会返回一个rejected Promise,开发者可自行监听错误信息 ```js interstitialAd.show().catch((err) => { console.error(err) }) ``` 用户可以主动关闭插屏广告。开发者不可控制插屏广告组件的隐藏。 ### 监听用户关闭广告 如果广告被关闭,通过 InterstitialAd.onClose() 注册的回调函数会执行,回调函数没有参数传递。 ```js interstitialAd.onClose(res => { console.log('插屏 广告关闭') }) ``` 示例代码 ```html ``` #### 方法 `Promise InterstitialAd.load()` 加载插屏广告。 `Promise InterstitialAd.show()` 显示插屏广告。 `InterstitialAd.destroy()` 销毁插屏广告实例。 `InterstitialAd.onLoad(function callback)` 监听插屏广告加载事件。 `InterstitialAd.offLoad(function callback)` 取消监听插屏广告加载事件 `InterstitialAd.onError(function callback)` 监听插屏错误事件。 `InterstitialAd.offError(function callback)` 取消监听插屏错误事件 `InterstitialAd.onClose(function callback)` 监听插屏广告关闭事件。 `InterstitialAd.offClose(function callback)` 取消监听插屏广告关闭事件 ### 注意事项 在插屏广告展示过程中如果快速切换页面,可能会出现插屏广告展示在非调用页面的情况,如有需要请在页面切换完成后进行插屏广告展示。