安卓和苹果都有这个问题,我每次打印出来的都是没有更新,强制更新也不行
更新问题?微信小程序更新版本发布上线之后,强制更新线上版本不起作用 // 检测是否可以调用getUpdateManager检查更新 if (!wx.canIUse("getUpdateManager")) return; console.log(wx.canIUse("getUpdateManager")) let updateManager = wx.getUpdateManager(); updateManager.onCheckForUpdate(function (res) { console.log("是否有新版本:" + res.hasUpdate); if (res.hasUpdate) { console.log('小程序更新了') updateManager.onUpdateReady(function () { updateManager.applyUpdate(); }) updateManager.onUpdateFailed(function () { wx.showModal({ title: '提示', content: '检查到有新版本,但下载失败,请稍后尝试', showCancel: false, }) }) }else{ console.log('小程序没有没有没有没有没有没有没有没有更新') updateManager.applyUpdate(); } });
2019-12-18一个二维码,扫描二维码绑定店员
微信内嵌h5页面?微信小程序内嵌h5页面,页面中不显示二维码,但是打开的链接中有二维码 [图片][图片] wxml: <web-view src="{{wxUrl}}"></web-view> js: data: { wxConfigBindShopManager: { url: "https://open.weixin.qq.com/connect/qrconnect?appid=xxxxxx&state=bind&response_type=code&scope=snsapi_login&redirect_uri=http%3A%2F%2Fsaishangfang.com%2Ffront%2Fwx%2FwxBindEpy.html", redirectUrl: "http://saishangfang.com/front/wx/wxBindEpy.html", appID: "xxxxxxxxxxx", appSecret: "xxxxxxxxxxxx", href: "https://www.saishangfang.com/static/modules/front/bms/css/login.css" }, wxUrl: '', }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { console.log(options.storeId) var config = this.data.wxConfigBindShopManager; var url = config.url + '?storeId=' + options.storeId + "&href=" + config.href; this.setData({ wxUrl: url }) console.log(url) },
2019-12-16而且发布的版本都不走这个请求
微信小程序生成当前页面的小程序码?小程序生成当前页面的小程序码,在本地和体验版中都是好的,但是在发布的版本中显示不出来,是什么原因? wx.request({ url: 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=xxxxxxxxxx&secret=xxxxxxxxxx', method: 'GET', success: function (res) { console.log(res) var access_token = res.data.access_token; // 获取二维码 wx.request({ url: 'https://api.weixin.qq.com/wxa/getwxacode?access_token=' + access_token, method: 'POST', responseType: 'arraybuffer',//这个是转化成base64需要加的 data: { path: 'pages/bargainDetail/bargainDetail?refid=' + that.data.refId + '&attendMemberId=' + that.data.attendMemberId, width: '200', }, success: function (res) { console.log('-----------******************************') var imgUrl2 = wx.arrayBufferToBase64(res.data) var imgUrl3 = 'data:image/png;base64,' + imgUrl2 console.log('---------------------------//////////////////////////////') that.setData({ imgUrl1: 'data:image/png;base64,' + imgUrl2, imgUrll: imgUrl3.replace(/\r\n/g,'') })
2019-12-12