一、二維碼原理:
二維條碼/二維碼可以分為堆疊式/行排式二維條碼和矩陣式二維條碼。 堆疊式/行排式二維條碼形態上是由多行短截的一維5條碼堆疊而成;
矩陣式二維條碼以矩陣的形式組成,在矩陣相應元素位置上用“點”表示二進制“1”, 用“空”表示二進制“0”,“點”和“空”的排列組成代碼。
數據表示方法 |
深色模塊表示二進制“1”,淺色模塊表示二進制“0”。 |
糾錯能力 |
· L級:約可糾錯7%的數據碼字 |
· M級:約可糾錯15%的數據碼字 |
|
· Q級:約可糾錯25%的數據碼字 |
|
· H級:約可糾錯30%的數據碼字 |
二、使用jquery.qrcode生成二維碼
Basic Usages
<div id="qrcode"></div>
<script type="text/javascript">
new QRCode(document.getElementById("qrcode"), "http://jindo.dev.naver.com/collie");
</script>
with some options
<div id="qrcode"></div>
<script type="text/javascript">
var qrcode = new QRCode(document.getElementById("qrcode"), {
text: "http://jindo.dev.naver.com/collie",
width: 128,
height: 128,
colorDark : "#000000",
colorLight : "#ffffff",
correctLevel : QRCode.CorrectLevel.H
});
</script>
方法:
qrcode.clear(); // clear the code.
qrcode.makeCode("http://naver.com"); // make another code.
GitHub:https://github.com/davidshimjs/qrcodejs/
1、首先在頁面中加入jquery庫文件和qrcode插件
<script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.qrcode.min.js"></script>
2、在頁面中需要顯示二維碼的地方加入以下代碼:
<div id="code"></div>
3、調用qrcode插件。支持canvas和table兩種方式進行圖片渲染
canvas方式:
$('#code').qrcode("http://www.baidu.com"); //任意字符串
table方式:
$("#code").qrcode({ render: "table", //table方式 width: 200, //寬度 height:200, //高度 text: "www.helloweba.com" //任意內容 });
4、如果生成的二維碼內容包含文字,需要把字符串轉換成UTF-8
定義轉化方法:
function toUtf8(str) { var out, i, len, c; out = ""; len = str.length; for(i = 0; i < len; i++) { c = str.charCodeAt(i); if ((c >= 0x0001) && (c <= 0x007F)) { out += str.charAt(i); } else if (c > 0x07FF) { out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F)); out += String.fromCharCode(0x80 | ((c >> 6) & 0x3F)); out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F)); } else { out += String.fromCharCode(0xC0 | ((c >> 6) & 0x1F)); out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F)); } } return out; }
在生成的時候調用轉化方法:
var str = toUtf8("字符串測試!"); $('#code').qrcode(str);
三、在Vue-cli項目中動態生成二維碼
1、引入qrcode--------npm install qrcode
2、在main.js中引入
import QRCode from 'qrcode' //定義生成二維碼組件
3、在需要使用到生成二維碼的組件中引入
import QRCode from 'qrcode' //引入生成二維碼組件
4、在HTML中定義生成的位置,注意添加樣式
<template> <div id="query"> <h1>二維碼:</h1> <canvas id="canvas"></canvas> </div> </template>
#canvas{ width: 80%!important; height: auto!important; }
5、在js中定義生成二維碼的方法並調用
//動態生成二維碼 useqrcode(){
//生成的二維碼內容,可以添加變量
this.QueryDetail='http://www.kspxzx.com/#/guard'+"?unique_code="+this.QueryDetail; var canvas = document.getElementById('canvas') QRCode.toCanvas(canvas, this.QueryDetail, function (error) { if (error) console.error(error) console.log('success!'); }) }