收藏
回答

wx.getLaunchOptionsSync,每天新增有一半用户获取不到渠道信息?

/**
     *
     * @param index 获取小游戏端渠道号
     */
    export function getWxChannel() {
        let options = wx.getLaunchOptionsSync();
        let channel;
        if (options != undefined) {
            wx.aldSendEvent(`启动参数:` + JSON.stringify(options))
            if (options['query'] && options['query'].channel) {
                channel = options['query'].channel;
            } else if (options['extraData'] && options['extraData'].channel) {
                channel = options['extraData'].channel;
            } else if (options['referrerInfo'] && options['referrerInfo']['extraData'] && options['referrerInfo']['extraData'].channel) {
                channel = options['referrerInfo']['extraData'].channel;
            } else {
                channel = -1;
            }
        } else {
            channel = -1;
        }
        return channel;
    }

通过wx.getLaunchOptionsSync获取投放广告时配置的渠道信息,现在每天都有一半的用户获取不到渠道信息。

麻烦官方大大们帮我看看。

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

1 个回答

  • 灵芝
    灵芝
    2019-10-21

    是什么意思?看下报错信息是什么呢

    2019-10-21
    有用
    回复 1
    • 张瑞
      张瑞
      2019-10-21
      这个没有报错的,举个例子,我们在MP后台投放广告买了8000的用户,其中只有4000用户进游戏时带了渠道号,其他4000人取不到渠道号。我们没法知道这4000用户是从哪个广告点进来的。
      2019-10-21
      回复
登录 后发表内容
问题标签