抖音开放平台Logo
开发者文档
控制台
  • API 概览
  • 开放能力
  • 基础
  • 渲染
  • 设备
  • 文件
  • 位置
  • 媒体
  • 网络
  • 游戏转发分享
  • 实时语音
  • 数据缓存
  • 系统
  • 广告
  • tt.createBannerAd
  • tt.createRewardedVideoAd
  • tt.createInterstitialAd
  • BannerAd
  • BannerAd
  • BannerAd.show
  • BannerAd.hide
  • BannerAd.onLoad
  • BannerAd.offLoad
  • BannerAd.onError
  • BannerAd.offError
  • BannerAd.onResize
  • BannerAd.offResize
  • BannerAd.destroy
  • RewardedVideoAd
  • InterstitialAd
  • 界面
  • 支付
  • Worker
  • BannerAd.destroy
    收藏
    我的收藏

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

    销毁广告实例。 当开发者确定某个广告实例无需展示时应当主动销毁以提升性能。

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

    语法

    BannerAd.destroy()

    参数说明

    返回值

    类型说明最低支持版本
    Promise
    Promise对象
    1.3.0

    错误码

    errNoerrMsg说明最低支持版本
    10301feature is not supported in app
    1.3.0
    21300context exception
    小游戏框架内部错误,有需要请创建工单咨询
    1.3.0
    1003current activity is null, can not create game banner
    1.3.0
    1003Please apply for an adUnitId
    1.3.0
    1003can not create game banner
    小游戏框架内部错误,有需要请创建工单咨询
    1.3.0
    1006The scene does not support advertising
    1.3.0
    1001The adUnitId is empty
    1.3.0
    1008The adUnitId is closed
    1.3.0
    1007The adUnitId is prohibit
    1.3.0
    1002The adUnitId is invalid
    1.3.0
    20000internal error
    小游戏框架内部错误,有需要请创建工单咨询
    1.3.0
    21000ad not found
    小游戏框架内部错误,有需要请创建工单咨询
    1.3.0
    21000unitid is illegal
    1.3.0
    21000unitid is illegal
    1.3.0
    21000unitid is illegal
    1.3.0
    21000unitid is illegal
    1.3.0
    21000unitid is illegal
    1.3.0
    21000unitid is illegal
    小游戏框架内部错误,有需要请创建工单咨询
    1.3.0
    1003The adUnitId is empty
    1.3.0
    1003The adUnitId is invalid
    1.3.0
    1003unknown ad type
    1.3.0
    1002The adUnitId is invalid
    小游戏框架内部错误,有需要请创建工单咨询
    1.3.0

    代码示例

    const bannerAd = tt.createBannerAd({ adUnitId: "xxxx", }) bannerAd.onLoad(() => { bannerAd.show() setTimeout(() => { bannerAd.destroy() }, 3000) })