- 已经认证的公众号,为什么无法使用开放标签?
wx.config配置分享成功了,但是开放标签无效,手机上按钮也没出来 相关代码如下: <style type="text/css">.testBtn *{width: 100%;height: 100%;}</style> <div class="testBtn" style="background: #007AFF;width: 120px;height: 100px;"> <wx-open-launch-weapp id="launch-btn" username="gh_***" path="pages/shopping/index/index.html"> <template> <style>.btn { padding: 12px; height: 100px; width: 120px; }</style> <button class="btn">打开小程序</button> </template> </wx-open-launch-weapp> </div> wx.config({ debug: false, appId: jssdk.appId, timestamp: jssdk.timestamp, nonceStr: jssdk.nonceStr, signature: jssdk.signature, jsApiList: ['updateAppMessageShareData','updateTimelineShareData','onMenuShareAppMessage', 'onMenuShareTimeline' ], openTagList:['wx-open-launch-weapp'] });
2020-07-27 - video可以模拟live-player来使用吗?
可以使用video来代替live-player来使用吗?
2020-05-11 - 商家自营直播商品,需使用直播api,应开通官方文档要求下的哪个类目?
相关官方文档:https://developers.weixin.qq.com/miniprogram/dev/component/live-player.html 文档截图: [图片]
2020-05-11 - 部分苹果手机,子域加载微信头像,提示不在后台可信域名中
wx.getFriendCloudStorage({ keyList: ['xxx'], success: res => { let arr= res.data //以下为图片加载代码 loadNext() var rArr=[] function loadNext(i){ var image = wx.createImage(); var src = arr[i]; if (typeof (arr[i]) == "object"||typeof (arr[i])==Object)src=arr[i].avatarUrl image.src = src; image.onerror = function(){ image.src = 'images/defaultAvatar.png' rArr.push(image) i++ if (i == arr.length) { if(callback) callback(rArr) return; } loadNext(i) } image.onload = function () { rArr.push(image) i++ if (i == arr.length) { if(callback)callback(rArr) return; } loadNext(i) } } } }) 错误:"https://wx.qlogo.cn/mmopen/vi_32/Qxxxxxxxxxxx" 不在后台可信域名中
2020-02-15