使用开放标签微信公众号跳转小程序时为什么提示信息不完整,无法启动?
[图片] 代码如下
<wx-open-launch-weapp
id="launch-btn"
username="gh_ba1c5ffe431e"
path="/pages/fast/fast.html"
@error="handleErrorFn"
@launch="handleLaunchFn"
>
<script type="text/wxtag-template" class="kefu-box">
<image src="http://img.puliuwang.com/l_a3.png" mode="scaleToFill"></image>
</script>
</wx-open-launch-weapp>
wxConfig() {
console.log(wx)
let paramData = {url: window.location.href.split("#")[0]}
this.$ajax.post("/api/jssdk", paramData).then(res => {
if(res.code == 0) {
wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: res.data.appId, // 必填,公众号的唯一标识
timestamp: res.data.timestamp, // 必填,生成签名的时间戳
nonceStr: res.data.nonceStr, // 必填,生成签名的随机串
signature: res.data.signature, // 必填,签名
jsApiList: ['onMenuShareAppMessage'], // 必填,需要使用的JS接口列表
openTagList: ['wx-open-launch-weapp'] // 可选,需要使用的开放标签列表,例如['wx-open-launch-app']
})
}
}).catch(err => {
console.log(err)
});
},
handleLaunchFn(e) {
console.log("success", e);
alert(JSON.stringify(e) + '成功')
},
handleErrorFn(e) {
console.log("fail", e.detail);
alert(JSON.stringify(e.detail) + '失败')
},