如何利用nodejs生成二维码并下载二维码,下面web建站小编给大家详细介绍一下具体代码的使用!
生成二维码代码:
const qrCode = require('qrcode') class QrController { async create (ctx) { const { text = 'Luban', options } = ctx.request.body const qrOptions = { type: 'image/png', //生成图片类型:image/png、image/jpeg、 image/web width: 180, //二维码的宽度 margin: 5, //二维码的内边距 scale: 1, //放缩的倍数 color: { dark: '#000000', //背景色 light: '#ffffff' //前景色 }, errorCorrectionLevel: 'M', //纠错级别 quality: 1 } Object.assign(qrOptions, options) const imgData = await qrCode.toDataURL(text, qrOptions) return ctx.success({ imgData }) } } module.exports = new QrController()
下载二维码代码:
const a = document.createElement('a') const event = new MouseEvent('click') a.download = '下载二维码' a.href = this.imgSrc a.dispatchEvent(event)
标签: 生成二维码
上面是“如何利用nodejs生成二维码(下载二维码)”的全面内容,想了解更多关于 nodejs 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3282.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!