憨憨
微信小程序生成当前页面的小程序码?小程序生成当前页面的小程序码,在本地和体验版中都是好的,但是在发布的版本中显示不出来,是什么原因? 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,'') })
2021-04-15那我们这个已经授权过,但是wx.getsetting里面就没有scope.userInfo 是什么意思,这怎么用,干点人事吧
authSetting['scope.userInfo']又没有了吗?[图片]
2021-04-10