本文介绍: 最后,如果上面的流程都能走通,那么,就可以按照自己项目的时机需求去再做开发了,至少生成二维码功能已经实现了。vue项目实现的 一个简单二维码生成例子。然后尝试走通下面的业务

vue项目实现的 一个简单二维码生成例子

首先安装一下插件

npm install qrcodejs2 --save

然后尝试走通下面的业务

<template>
  <div class="qrcode"&gt;
    <h1&gt;生成二维码</h1&gt;
    <label for="text"&gt;请输入转换二维码内容:</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进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注