我也遇到了同样的问题 https://developers.weixin.qq.com/community/develop/doc/000e4e7dc587b03baf6aa7f085b400
<wx-open-launch-app>标签内容不展示?前置条件: 已经按照文档核对了准入条件,个人排查符合条件 社区中同类问题也已经查看,按照他们的解决办法也无法实现效果 校验显示通过 [图片] [图片] wx-open-launch-app 组件页面元素显示 [图片] 页面显示空白 [图片] 微信开发工具是最新的,不知道是啥原因,官方能帮忙查一下吗?
2020-05-28微信APP(7.0.12)版本,手机系统(IOS 13.4.1)版本都符合条件;
wx-open-launch-app 标签里面的内容不显示,怎么处理?<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>启动APP</title> <meta name="viewport" content="width=device-width, height=device-height, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui"> </head> <body> <div id='wola' class="mobile-page-download"> <wx-open-launch-app id="launch-btn" appid="wxea5b413296e9ae45"> <template> <style>.btn { padding: 12px }</style> <button class="btn">App内查看</button> </template> </wx-open-launch-app> </div> </body> <script src="/js/jquery.min.js"></script> <script src="/js/xiaozhu.js"></script> <script src="//res.wx.qq.com/open/js/jweixin-1.6.0.js"></script> <script> $(function(){ $.get(`${shareUrl}wechat/jsconf?type=weixin`, function(result){ wx.config({ debug: true, appId: result.content.appId, timestamp: result.content.timestamp, nonceStr: result.content.nonceStr, signature:result.content.signature, jsApiList:result.content.jsApiList, openTagList: ['wx-open-launch-app'] }); }); wx.ready(function () { alert('ready'); }); wx.error(function (res) { alert(`error:${JSON.stringify(res)}`); }); var btn = document.getElementById('launch-btn'); btn.addEventListener('launch', function (e) { console.log('success'); }); btn.addEventListener('error', function (e) { alert(`fail:${JSON.stringify(e.detail)}`); }); }); </script> </html> [图片][图片][图片] 为了查问题,采用了最原始的开发方式写了个demo wx-open-launch-app 标签里面的内容为啥不显示? 接入方式完全按照https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html 希望官方解答,谢谢!
2020-05-28遇到了同样的问题,希望官方解答
wx-open-launch-app 在VUE中怎么处理?https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html 提示玩 config:ok 之后,打开APP按钮 就消失了 <wx-open-launch-app id="launch-btn" appid="your-appid" extinfo="your-extinfo" > <template> <style>.btn { padding: 12px }</style> <button class="btn">App内查看<button> </template> </wx-open-launch-app>
2020-05-27