共计 342 个字符,预计需要花费 1 分钟才能阅读完成。
1.vue3 中应用 qrcodejs2 报错,如下:
TypeError:Cannot read properties of undefined(reading‘_android‘)
解决办法,应用 qrcodejs2-fix
替换qrcodejs2
npm install qrcodejs2-fix
const getQRCode = text => { | |
const qrcode = new QRCode('qrcode', { | |
text, | |
width: 240, | |
height: 240, | |
colorDark: '#000000', // 二维码色彩 | |
colorLight: '#ffffff', // 二维码背景色 | |
correctLevel: QRCode.CorrectLevel.L // 容错率,L/M/H}) | |
}) | |
return qrcode.value | |
} |
正文完