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'}); }
  • 相关阅读:
    查詢一個表中的所有字段,一个表的结构
    二月份工作總結
    导出excel [原创]
    一个it老总对于新人的一点建议
    命名空间的别名
    mssql 格式化时间 [转]
    开发人员一定要加入收藏夹的网站
    sql 导出/入Excel
    hibernate中hbm文件中inverse功能
    详细展示Asp.net页面的生命周期[转]
  • 原文地址:https://www.cnblogs.com/yeqrblog/p/10937854.html
Copyright © 2011-2022 走看看