测试过没有问题,要真机测试,用开发者工具不行的
小程序跳转按钮:<wx-open-launch-weapp>怎么不显示?在使用vue框架页面,按照文档先后配置好了js接口安全域名——1.6.0版本jssdk——配置config opentaglist——使用<script type="text/wxtag-template"></script>包括button,html代码如下 <wx-open-launch-weapp username="gh_ebfb250249c1" @error="launchAppError" @launch="launchAppLaunch" @ready="launchAppReady" > <script type="text/wxtag-template"> <style>.btn { display: flex;align-items: center; }</style> <button class="btn" style="border-radius: 55px;font-size:15px;color:#ffffff;font-weight:700;padding: 0 50px;height:45px;line-height: 45px;background-color: #FF9700;margin: 0 auto;" >立即打开小程序</button> </script> </wx-open-launch-weapp>
2020-09-08测试没有问题这个 wx.getSetting({ withSubscriptions: true, success(res) { var itemSettings = res.subscriptionsSetting.itemSettings; if (itemSettings) { if (itemSettings['Mf5V7wuPbFTukIQ7Uw98nye7zqGJP4SmLydvstIOX1I']=='accept') { console.log('is accredit:ok') } } } })
如何在登陆时判断用户有没有授权订阅消息?用户在pc端提出业务申请,审批通过后。需要在微信上接收申请结果通知。 需要在用户登陆小程序后,去判断是否对对应的订阅消息模板进行授权。如果没有则在小程序上对用户进行提醒。 我理解需要用户授权才能下发订阅消息。可是我也得知道用户有没有授权吧。。。。 难道只能在用户点击以后用wx.requestSubscribeMessage我才能知道到底有没有授权?????
2020-06-24