appId,secret 生成TOKEN. token去强求微信接口生产小程序码
https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=${appId}&secret=${secret}
https://api.weixin.qq.com/wxa/getwxacode?access_token=' + access_token
request({
url:'https://api.weixin.qq.com/wxa/getwxacode?access_token=' + access_token,
method: 'POST',
responseType: 'arraybuffer',
json: true,
headers: {
"content-type": "application/json",
},
body: {
path: 'pages/index/index?code=' + '223', // 必须是已经发布的小程序存在的页面(否则报错) ()
width: 298,
auto_color: true, // 自动配置线条颜色,如果颜色依然是黑色,则说明不建议配置主色调
line_color: {
"r": "0",
"g": "0",
"b": "0"
} // auto_color 为 false 时生效,使用 rgb 设置颜色
}
}).on('response',function(response){
// 数据返回值 直接返回
this.pipe(res)
})
uni.request({
url:'http://127.0.0.1:21991/getQrCode',
method: 'POST',
responseType: 'arraybuffer',
data:data,
success:(res)=> {
console.log(res);
setTimeout(() => {
_this.qrcode = "data:image/PNG;BASE64," + uni.arrayBufferToBase64(res.data); //以图片的形式展示
}, 50)
},
fail: (err) => {
console.log(err);
}
})