美文网首页
小程序生成二维码

小程序生成二维码

作者: Astep | 来源:发表于2019-07-30 18:05 被阅读0次

导入生成二维码的js文件

文件原地址:https://github.com/vivialex/wx_program_QRCode
index.wxml

<canvas canvas-id="canvas" style="width: 300px; height: 300px"></canvas>

index.js

let QRCode = require("./qrCode.js").default;
  onLoad: function () {
    var qrcode = new QRCode('canvas', {
      text: 'http://baidu.com',
      width: 300,
      height: 300,
      colorDark: '#000000', //二维码颜色
      colorLight: '#ffffff',//背景色
      correctLevel: QRCode.correctLevel.H
    });
    // qrcode.clear(); // clear the code.  
    // qrcode.makeCode(); // make another code.
  }

相关文章

网友评论

      本文标题:小程序生成二维码

      本文链接:https://www.haomeiwen.com/subject/thqorctx.html