生成二维码
- 目录结构
- ...
- pages
- index
- index.js
- index.json
- index.wxml
- index.wxss
- utils
- qrcode.js
- ...
- qrcode.js下载
- 在index.js引用
import QRCode from '../../utils/qrcode';
...
var that = this;
new QRCode('myQrcode',{
text: that.data.value,
width: 141, //canvas 画布的宽
height: 141, //canvas 画布的高
padding: 0, // 生成二维码四周自动留边宽度,不传入默认为0
correctLevel: QRCode.CorrectLevel.L, // 二维码可辨识度
callback: (res) => {
wx.hideLoading()
wx.saveImageToPhotosAlbum({//保存到手机相册
filePath: res.path,
success(res) {
wx.showToast({
title: '保存图片成功',
})
}
})
}
})
生成小程序码
- 我自己写一个直接放到github上了,需要的自行安装。
wxapplet地址
composer packagist
Comment here is closed