uniapp使用tki-qrcode插件生成二维码,并且可以分享给微信好友

在这里插入图片描述
在这里插入图片描述

1、 导入插件

npm i tki-qrcode

2、页面引入插件并挂载

	<view class="content-qr-box">
		<tki-qrcode cid="qrcode2" ref="qrcode2" :val="qr_content" :size="390" :onval="true" :loadMake="true"
			:usingComponents="true" @result="qrResult" />
	</view>
<script>
	import tkiQrcode from '@/components/tki-qrcode/tki-qrcode.vue';

	export default {
		components: {
			tkiQrcode
		},
		data() {
			return {
				qr_content: '1', // 生成的转接码内容
				result: ''
			}
		},
		methods: {
			// 二维码保存
			saveQrCode() {
				this.$refs.qrcode2._saveCode();
			},
			qrResult(e) {
				console.log("生成的图片base64或图片临时地址", e);
				this.result = e;
			},
			// 分享图片到微信
			shareToWechat() {
				let _this = this;
				wx.showShareImageMenu({
					path: _this.result //要分享的图片地址,必须为本地路径或临时路径
				})
			}
		},
	}
</script>

按钮

<view class="content-btn common-flex">
	<view class="btn left-btn" @click="saveQrCode()">下载保存</view>
	<view class="btn right-btn" @click="shareToWechat">分享到微信</view>
</view>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值