当前位置:   article > 正文

qrcodejs华为手机无法识别二维码解决方法_二维码 js 生成canvas 在手机上 不能长按识别

二维码 js 生成canvas 在手机上 不能长按识别

前言

现在移动端都很普遍用到生成二维码,一般都是由前端生成,当然也有后台生成返图片给你。
比如生成海报,邀请二维码都有用到。我在项目中遇到的问题就是华为手机长按识别二维码会无法识别,原因大家应该也有搜百度,是应为qrcodejs生成二码后会把canvas display:none但是在华为手机不生效,微信不支持canvas长按识别,我解决的方法就是手动把canvas转图片,隐藏掉自带的那块。直接上代码。
项目用的是VUE,封装的Qrcode的组件

qrCode.vue
<template>
  <div class="qrcode_box">
    <div ref="code" v-if="!imgData"></div>
    <img class="toHtml" :src="imgData" alt v-else />
    <slot></slot>
  </div>
 
</template>
<script>
import QRCode from "qrcodejs2";
import html2canvas from "@/libs/html2canvas";
export default {
  name: "qrcode",
  props: ["text", "type", "color"],
  data() {
    return {
      imgData: ""
    };
  },
  watch: {
    text() {
      this.codeInit();
    },
    color() {
      this.codeInit();
    }
  },
  mounted() {
    this.codeInit();
  },
  methods: {
    codeInit() {
      if (!this.$refs.code) return;
      this.$refs.code.innerHTML = "";
      let w = this.$el.clientWidth,
        h = this.$el.clientHeight;
      console.log(this.text);
      new QRCode(this.$refs.code, {
        text: this.text,
        width: w,
        height: h,
        scrollY: 0,
        scrollX: 0,
        colorDark: this.color || "#000",
        colorLight: "#fff",
        correctLevel: QRCode.CorrectLevel.L
      });
      console.log(this.$refs.code);
        var canvas=document.getElementsByTagName('canvas')[0];
        this.imgData = this.convertCanvasToImage(canvas);
    },
    convertCanvasToImage(canvas) {
       var url =  canvas.toDataURL("image/png");
      return url;
    },
    createPicture(w, h) {
      console.log("refresh");
      // this.$nextTick(() => {
      //   setTimeout(() => {
      //     html2canvas(this.$refs.code, {
      //       backgroundColor: "#fff",
      //       width: w,
      //       height: h,
      //       useOverflow: true,
      //       useCORS: true
      //     }).then(canvas => {
      //       var imgData = canvas.toDataURL("image/jpeg");
      //       this.imgData = imgData;
      //     });
      //   }, 500);
      // });
    }
  }
};
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76

html2canvas可以不用引用,之前想的是把生成出来的canvas再截一次屏,但是有些手机会只截一般或者黑屏
使用方法

使用的页面
xx.vue
<qr-code class="pop_qrc" :text="shortLink"></qr-code>

import qrCode from "@/components/qrCode";

...此处省略部分代码
components: {
    qrCode,
  },

.pop_qrc{
width:100px;
height:100px
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

必须要给容器高度宽度,不然会显示不出来

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/321001
推荐阅读
相关标签
  

闽ICP备14008679号