收藏
回答

打开插屏广告,广告一闪而过就自动关闭了,这是为什么?

打开插屏广告,广告一闪而过就自动关闭了。代码用的官方文档代码:

    onLoad: function (options{
        if(wx.createInterstitialAd){
            interstitialAd = wx.createInterstitialAd({ adUnitId'adunit-61bc632530119796' })
            interstitialAd.onLoad(() => {
              console.log('onLoad event emit')
            })
            interstitialAd.onError((err) => {
              console.log('onError event emit', err)
            })
            interstitialAd.onClose((res) => {
              console.log('onClose event emit', res)
            })
          }


          interstitialAd.show().catch((err) => {
            console.error(err)
          })
    },

11

日志表现是:

onLoad event emit
onClose event emit undefined
onLoad event emit


刚加载出来,就立刻进入关闭状态了。

回答关注问题邀请回答
收藏

4 个回答

  • 耀๓
    耀๓
    2022-01-24

    问题重点就是通过wx.navigateTo跳转到的内页,bug就在这,官方也不管的。

    我暂时这样处理的,看评论


    https://developers.weixin.qq.com/community/develop/doc/000686724187f865d65d88bf551800?jumpto=comment&commentid=000a6821794ef027386df797a5b0


    2022-01-24
    有用
    回复
  • .
    .
    2022-01-23

    你解决了这个问题了吗?

    2022-01-23
    有用
    回复
  • 嘿嘿
    嘿嘿
    2022-01-15

    是这种的么,

    2022-01-15
    有用
    回复 2
    • JIN Bin 🤨
      JIN Bin 🤨
      发表于移动端
      2022-01-15
      插屏广告
      2022-01-15
      回复
    • 嘿嘿
      嘿嘿
      2022-01-15回复JIN Bin 🤨
      不好意思了,我目前没使用插屏广告,用的是激励广告和原生模板
      2022-01-15
      回复
  • A-Later
    A-Later
    2022-01-15

    可能当前用户已经展示过插屏广告了 短时间不允许再次展示吧

    2022-01-15
    有用
    回复 2
    • JIN Bin 🤨
      JIN Bin 🤨
      发表于移动端
      2022-01-15
      不是,每次都这样
      2022-01-15
      回复
    • A-Later
      A-Later
      2022-01-16回复JIN Bin 🤨
      如果两个页面公用一个广告id也会出现这种清空
      2022-01-16
      回复
登录 后发表内容