wx.request请求的url服务器地址必须先加到白名单中,
但是我想请求微信服务器https://api.weixin.qq.com,官方又不准我将https://api.weixin.qq.com加入到白名单中,要怎么请求呢?微信小程序camera 自定义拍照组件如何实现横屏拍照。
wx.request({
url: 'https://api.weixin.qq.com/cgi-bin/wxaapp/createwxaqrcode?access_token='+app.globalData.token,
data: {'path': "/pages/my/my?uid=1",'width': 430},
header: {
'content-type': 'application/json'
},
success: function(res) {
console.log(res.data)
},
fail:function(res) {
console.log('isFail')
}
})
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
本文网址:http://www.91bianli.com/weixinxiaochengxu/58342.html