先在 wxml 文件中,创建绘制的 canvas
,并定义好 width
,height
,canvasId
。由于小程序没有动态创建标签的 api,所以这一步不能省略。
<canvas style="width: 200px; height: 200px;" canvas-id="myQrcode"></canvas>
下载下载文件
引入 js 文件后,调用 drawQrcode()
绘制二维码
var QRCode=require("../../utils/weapp-qrcode.js")
var qrcode = new QRCode('canvas', {
text: "123456",
width: 150,
height: 150,
colorDark: "#000000",
colorLight: "#ffffff",
correctLevel: QRCode.CorrectLevel.H,
});
API 说明
参数 | 说明 | 示例 |
---|---|---|
width | 必须,二维码宽度,与 canvas 的 width 保持一致 | 200 |
height | 必须,二维码高度,与 canvas 的 height 保持一致 | 200 |
canvasId | 必须,绘制的 canvasId | 'myQrcode' |
text | 必须,二维码内容 | 'https://github.com/yingye' |
typeNumber | 非必须,二维码的计算模式,默认值 - 1 | 8 |
correctLevel | 非必须,二维码纠错级别,默认值为高级,取值:{ L: 1, M: 0, Q: 3, H: 2 } | 1 |
background | 非必须,二维码背景颜色,默认值白色 | '#ffffff' |
foreground | 非必须,二维码前景色,默认值黑色 | '#000000' |