zoukankan      html  css  js  c++  java
  • Vue使用QRCode.js生成二维码

    1.安装qrcode

    npm install qrcode

    2.组件中引入qrcode

    import QRCode from 'qrcode'

    3.html代码

    <div><span class="right-btn" @click="makeQRCode">生成二维码</span></div>
    
    <div class="column-body-content text-center">
        <div class="qr-code">
            <img id="image" :src="qrcode">
            <p>扫码预览</p>
        </div>
    </div>
    <style lang="stylus" scoped>
    .right-btn
        position relative
        display inline-block
        margin-right: 20px
        padding: 2px 6px
        line-height: 20px
        font-size 12px
        color: #fff
        border-radius: 4px
        background-color #29e
        cursor pointer
    .column-body-content
        padding: 20px
        
        .qr-code
            position relative
            margin-right: 20px
            margin-bottom: 10px
            display inline-block
            
            img
                 120px
                height: 120px
                border: 1px solid #eee
            p
                line-height 20px
                font-size 12px
                text-align center
    </style>

    4.使用qrcode:调用QRCode.toDataURL(二维码扫描的url)方法,可生成所需要的二维码

    // 生成二维码
    makeQRCode() {
        QRCode.toDataURL("http://aaa.vv.com/erp/card?authkey="+this.companyId).then(imgData => {
            if(imgData) {
                let file = this.convertBase64UrlToBlob(imgData);
                // 上传到服务器(这里是上传到阿里云,this.oss是直接把阿里云的oss连接作为Vue对象的属性来调用,put是上传文件的方法)
                this.oss.put('qrcode' + Math.random()*10 + '.png', file).then(result => {
    this.qrcode = result.url; // 将已上传的图片的url赋值给img的src alert('生成成功') }) } }); }, //从 base64 转换成 file convertBase64UrlToBlob(urlData) { let bytes = window.atob(urlData.split(',')[1]); //去掉url的头,并转换为byte //处理异常,将ascii码小于0的转换为大于0 let ab = new ArrayBuffer(bytes.length); let ia = new Uint8Array(ab); for (let i = 0; i < bytes.length; i++) { ia[i] = bytes.charCodeAt(i); } return new Blob([ab] , {type : 'image/png'}); }
  • 相关阅读:
    git日常使用的常用命令总结
    wordpress-技术博客主题推荐
    git日常使用的常用命令总结
    wordpress-技术博客主题推荐
    Centos系统安装Python3.7
    LeetCode-----翻转二叉树
    搭建 WordPress 博客教程
    echarts 去掉网格线
    调整柱状图圆角弧度
    Echarts设置y轴值间隔 以及设置 barWidth : 30,//柱图宽度
  • 原文地址:https://www.cnblogs.com/yeqrblog/p/10937854.html
Copyright © 2011-2022 走看看