批量动态生成二维码

Posted weiokx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量动态生成二维码相关的知识,希望对你有一定的参考价值。

批量动态生成二维码

   <script type="text/javascript" src="/site_media/js/qrcode.js"></script>
   // 生成二维码
    $(".qrcode").each(function(){
        var timestamp = new Date().getTime() + Math.random().toString().split(".")[1];  // 时间戳 + 随机数
        $(this).attr("id", timestamp);
        var q_type = $(this).attr("data-type");
        var q_id = $(this).attr("data-id");
        var qrcode_text = "http://www.domain.cn/qr/?type="+q_type+"&id="+q_id;

        var qrcode = new QRCode(timestamp, {
            width: 140,
            height: 140,
            colorDark: ‘#000000‘,
            colorLight: ‘#ffffff‘,
            correctLevel: QRCode.CorrectLevel.L
        });
        qrcode.makeCode(qrcode_text);
    });

 

.

以上是关于批量动态生成二维码的主要内容,如果未能解决你的问题,请参考以下文章

利用zxing源码包批量生成二维码,压缩并下载到本地

python代码MyQR生成动态二维码

如何实现excel数据导入批量生成二维码

生成带二维码的海报图---批量生成多个

批量生成二维码

使用python3调用MyQR库生成动态二维码(附源代码)