静态网站H5跳小程序 开发文档HTML示例 是错误的?
开发文档地址 https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/staticstorage/jump-miniprogram.html 错误1 自己绑定到静态网站的域名并没有得到免签!
例子:
1.系统分配的域名 errMSg会提示OK。 测试地址:https://ces-9gcyrt1h94533724-1304326639.tcloudbaseapp.com/a0.html
2.自己绑定域名 errMSg会提示 invalid signature。测试地址:https://ces.2ll.co/a0.html
确保该域名已经解析和绑定上了!
[图片] [图片] 错误2. [图片] 错误3. jsApiList 改成 jsApiList:['onMenuShareQQ']
这样 errMSg只会提示OK 而打开小程序按钮不会显示。
测试地址:https://ces-9gcyrt1h94533724-1304326639.tcloudbaseapp.com/a0.html
[图片] 尝试调整1 依旧错误! 把 <wx-open-launch-weapp id="weapp" weappid="wx9711e24e7248eb62" path="/pages/index/index">
改成 <wx-open-launch-weapp id="weapp" username="gh_71e37c67736f" path="/pages/index/index.html">
这样 errMSg也是只会提示OK 而打开小程序按钮不会显示。
测试地址:https://ces-9gcyrt1h94533724-1304326639.tcloudbaseapp.com/a2.html
尝试调整2 依旧错误! 把wx-open-launch-weapp的html改成
<div>
<wx-open-launch-weapp style="width:200px;background-color: #000;position: fixed " id="launch-btn" username="gh_71e37c67736f" path="/pages/index/index.html">
<script type="text/wxtag-template">
<style>
.btn {
width: 100%;
height: 50px;
font-size: 16px;
border: none;
background-color: #000;
color: #003c8a;
}
</style>
<button id="sdassad" class="btn">点击这里下载素材</button>
</script>
</wx-open-launch-weapp>
</div>
依旧只提示OK 并不显示按钮
但该写法使用JSSDK 是正常使用的 JSSDK例子:https://qqa55.aizwy.cn/tiao2.html
测试地址:https://ces-9gcyrt1h94533724-1304326639.tcloudbaseapp.com/a1.html
希望早日能得到解决 并且把错误的开发文档更正。这样误导不少人。