uniapp中使用uQRCode二维码生成插件

重要:插件下载地址

uniapp中使用uQRCode二维码生成插件_第1张图片

此处显示下载插件ZIP
uniapp中使用uQRCode二维码生成插件_第2张图片
下载成功之后只需要引入common文件夹下的uqrcode.js放到自己项目的文件夹下面,然后在需要使用的页面引入即可
uniapp中使用uQRCode二维码生成插件_第3张图片

项目目录结构如下:
uniapp中使用uQRCode二维码生成插件_第4张图片
uniapp中使用uQRCode二维码生成插件_第5张图片
uniapp中使用uQRCode二维码生成插件_第6张图片
uniapp中使用uQRCode二维码生成插件_第7张图片
uniapp中使用uQRCode二维码生成插件_第8张图片

   onReady() {
		    let modules = uQRCode.getModules({
		      text: this.codeUrl,
		      errorCorrectLevel: uQRCode.errorCorrectLevel.H
		    })
		    let tileSize = (this.size - this.margin * 2) / modules.length
		    // 获取绘图所需的上下文
		    let ctx = uni.createCanvasContext('qrcode', this)
		    // 开始绘制
		    ctx.setFillStyle(this.backgroundColor)
		    ctx.fillRect(0, 0, this.size, this.size)
		    for (var row = 0; row < modules.length; row++) {
		      for (var col = 0; col < modules.length; col++) {
		        // 计算每一个小块的位置
		        var x = col * tileSize + this.margin
		        var y = row * tileSize + this.margin
		        var w = tileSize
		        var h = tileSize
		
		        var style = modules[row][col] ? this.foregroundColor : this.backgroundColor
		        ctx.setFillStyle(style)
		        ctx.fillRect(x, y, w, h)
		      }
		    }
		    ctx.draw()
	}

最后呈现的效果图:
uniapp中使用uQRCode二维码生成插件_第9张图片

你可能感兴趣的:(uniapp,uniapp)