1.页面结构
<image src='{{imgUrl}}'></image>
2.代码结构
onLoad(options) {
if (options.param) {
var qrCode = '13246897451257' //传入生成二维码的字符串
this.generateQRCode(qrCode);
}
},
//调起第三方库qrCode
generateQRCode(text) {
//调用了qrCode里面的api
const apiUrl = `https://api.qrserver.com/v1/create-qr-code/?data=${encodeURIComponent(text)}&size=200x200`;
this.setData({
imgUrl: apiUrl
});
},
3.展示形式