收藏
回答

使用开放标签微信公众号跳转小程序时为什么提示信息不完整,无法启动?

代码如下

<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) + '失败')
			},


最后一次编辑于  2020-09-23
回答关注问题邀请回答
收藏

1 个回答

  • Listen
    Listen
    2020-09-23

    path 要加 反斜杠吗?

    2020-09-23
    有用
    回复 2
    • null
      null
      2020-09-30
      文档上说不要的
      我这边没有跳转小程序,提示信息不完整,无法启动
      2020-09-30
      回复
    • 小善缘
      小善缘
      2020-11-26
      楼主解决了没  是什么原因造成的 我这也遇到了
      2020-11-26
      回复
登录 后发表内容
问题标签