npm install qrcodejs2 --save
<template>
<div class="qrcode">
<h1>生成二维码</h1>
<label for="text">请输入要转换为二维码的内容:</label>
<input type="text" id="text" v-model="text" @keyup.enter="generateQRCode" />
<button @click="generateQRCode">生成</button>
<button @click="returnClear">清空</button>
<div ref="qrcode" style="margin: 0 auto" id="divdemo"></div>
</div>
</template>
<script>
import QRCode from "qrcodejs2";
export default {
name: "QRCodeGenerator",
data() {
return {
text: "",
qrcode: null,
};
},
methods: {
generateQRCode() {
if (this.qrcode != null) {
this.qrcode.clear(); // 清除原来的二维码
// 上面的清除方式无效,因此使用下面的强制清除
let divdeom = document.getElementById("divdemo");
divdeom.innerHTML = "";
}
this.qrcode = new QRCode(this.$refs.qrcode, {
width: 256,
height: 256,
text: this.text,
});
},
// 清除二维码以及输入框中的内容
returnClear() {
let divdeom = document.getElementById("divdemo");
divdeom.innerHTML = "";
this.text = "";
},
},
};
</script>
<style>
.qrcode input[type="text"] {
width: 20%;
padding: 10px;
font-size: 18px;
margin-bottom: 20px;
}
.qrcode button {
background-color: #4caf50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.qrcode button:hover {
background-color: #45a049;
}
.qrcode div {
margin-top: 20px;
}
button {
margin: 10px;
}
</style>
最后,如果上面的流程都能走通,那么,就可以按照自己项目的时机需求去再做开发了,至少生成二维码的功能已经实现了。
原文地址:https://blog.csdn.net/qq_64760783/article/details/134646661
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_6349.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。