wx-open-launch-weapp在javascript不显示是怎么回事?
代码是按照官网文档写的,直接把官网文档代码粘贴进去也不显示
<wx-open-launch-weapp
id="launch-btn"
username="gh_xxxxxxxx"
path="pages/home/index.html?user=123&action=abc"
>
<template>
<style>.btn { padding: 12px }</style>
<button class="btn">打开小程序</button>
</template>
</wx-open-launch-weapp>
我也遇到了同样的问题。html页面,加<template></template>就不显示了,不论真机、网页、PC微信网页都不显示
<script type="text/wxtag-template">
<style>
.btn {
width: 375px;
height: 50px;
font-size: 16px;
}
</style>
<button class="btn">打开小程序</button>
</script>
</wx-open-launch-weapp>
试下这个,我这边在真机上可以看到
请问解决了吗
<script type="text/wxtag-template">
<style>
.btn {
width: 375px;
height: 50px;
font-size: 16px;
}
</style>
<button class="btn">打开小程序</button>
</script>
</wx-open-launch-weapp>
试下这个,我这边在真机上可以看到
你好,提供下服务号的appid和问题链接。
链接:https://www.qcent.top/mobile/test.jsp
在开发者工具里调试看看
你贴下你的完整代码截图,光从这个看不出什么问题来。