- wx-open-launch-weapp 点击后提示launch:fail是什么原因?
config:ok,注入没问题。 [图片] 写入开放标签: <wx-open-launch-weapp id="launch-btn" appid="wxxxxxxxxxx" // 正式环境appid path="pages/guide?id=1" > <script type="text/wxtag-template"> <div> 前往查看 </div> </script> </wx-open-launch-weapp> wx.ready(() => { const btn = document.getElementById('launch-btn') // const path = `pages/guide` // btn.setAttribute('path', path) btn.addEventListener('launch', (e) => { // eslint-disable-next-line no-console console.log(e, 'success') }) btn.addEventListener('error', (e) => { // eslint-disable-next-line no-console console.log('fail', e.detail) }) }) weixin-js-sdk 用的1.6,按钮也可以正常显示, 但是点击按钮后,进入error事件: [图片] 这是我本地用微信开发者工具信息,试了好几个小程序,不管是体验版还是正式版 都会报fail ,请问是什么原因?
2023-11-24 - 安卓机型 wx-open-launch-weapp 提示 param is empty?
[图片]安卓机型7.0+,微信版本10.0.16,提示如图,无法跳转,但是ios可以跳转,大家有遇到过吗,如何解决这种问题? {/* @ts-ignore */} <div style={{ width: '80px', height: '28px', textAlign: 'center', lineHeight: '28px', fontSize: '15px', color: '#5292fd', }} > 小程序按钮 </div> {/* @ts-ignore */}
2020-10-21