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