jsSDK版本号1.6
代码:
wx.config({
debug: true,
appId: that.appid,
timestamp: that.time,
nonceStr: that.nums,
signature: that.signature,
jsApiList: ['onMenuShareTimeline'],
openTagList: ['wx-open-launch-app']
})
使用wx.ready进行标签是否可用检测是可用,
wx.ready(function () {
wx.checkJsApi({
jsApiList: ['wx-open-launch-app'],
success: function (res) {
console.log('可用')
console.log('config111')
},
fail: (err) => {
console.log(err, '不可用')
}
})
})
报错信息:
点击标签之后的报错信息:
你好,请问是否报错launch:fail
这个问题 你是如何解决的