小程序js 把链接转换为二维码

07-19 1018阅读

GitHub - Rookie-M/weapp-qrcode: weapp.qrcode.js 在 微信小程序 中,快速生成二维码

1.要下载上面地址的插件包

2.引用

import drawQrcode from '../../utils/weapp.qrcode.min'
onLoad(options) {
		let that = this
		console.log(JSON.parse(options.info))
		that.setData({
			info: JSON.parse(options.info)
		}, () => {
			setTimeout(() => {
				drawQrcode({
					width: 150,
					height: 150,
					canvasId: 'myQrcode',
					text: that.data.info.aliPayUrl,
				})
			}, 800)
		})
	},

小程序js 把链接转换为二维码

VPS购买请点击我

文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。

目录[+]