无法获取referrerInfo 的appId
之前一直可以从在app.js的 Launch方法 中读取options 的referrerInfo 的APPID值, 即可以知道是从哪个公众号进入小程序的,但从昨天开始一直无法获取了。
onLaunch: function (options) {
wx.request({
url: this.APIURL + ‘/test/log’,
header: {
‘content-type’: ‘application/x-www-form-urlencoded’
},
method: “POST”,
data: {
module:‘app’,
content: JSON.stringify(options)
},
success: function (result) {
}
});
直接打印options参数 发现没有APPID的信息, 现在不返回这个值了吗