有一些耗cpu的計算,完全可以在客戶端上計算,例如產生二維碼。
qrcode其實是透過計算,然後使用jquery實現圖形渲染和畫圖。支援canvas和table兩種方式產生我們所需的二維碼。
具體用法
qrcode是jquery元件,需要至少兩個js, 就是 jquery 和 jquery.qrcode。可以到https://github.com/jeromeetienne/jquery-qrcode取得最新的程式碼。
在頁面上,需要顯示二維碼的地方加入一個空元素(此處用div)
在需要產生二維碼的時候,呼叫一下語句直接產生。
$("#qrcode").qcrode("
http://www.jb51.net");//需要產生的頁面
詳細參數
參數 預設值 說明
render canvas 渲染方式,支援canvas和table
width 無 寬度
height 無 高度
text 無 需要產生的url
如:
$("#qrcode").qcrode({
render: "table",
width: 200,
height: 200,
text: "
http://www.jb51.net"
});
解決url中有中文方法
我們試驗的時候發現不能辨識中文內容的二維碼,透過尋找多方資料了解到,jquery-qrcode是採用charCodeAt()方式進行編碼轉換的。而這個方法預設會取得它的Unicode編碼,如果有中文內容,在生成二維碼前就要把字串轉換成UTF-8,然後再產生二維碼。您可以透過以下函數來轉換中文字串:
函數 toUtf8(str) {
var 輸出,i,len,c;
輸出=「」;
len = str.長度;
for(i = 0; i
c = str.charCodeAt(i);
if ((c >= 0x0001) && (c
輸出 = 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));
} 其他 {
out = String.fromCharCode(0xC0 | ((c >> 6) & 0x1F));
out = String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
}
}
回;
}
下載二維碼
用前端畫的出來二維碼,不是一個canvas就是一個桌子,要怎麼下載呢?我們只需要把canvas的內容畫到圖片上,下載下來即可。
函數下載(canvasElem, 檔名, imageType) {
var event, saveLink, imageData, defalutImageType;
defalutImageType = 'png';//定義預設圖片類型
imageData = canvasElem.toDataURL(imageType || defalutImageType);//將canvas元素轉換為影像資料
saveLink = document.createElementNS('http://www.w3.org/1999/xhtml', 'a');
saveLink.href = imageData;
saveLink.download = 檔案名稱;
event = document.createEvent('MouseEvents');
event.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
saveLink.dispatchEvent(event);
};
有角度的簡單封裝
在Angular中使用,可以封裝成指令。不過要確保已經導入了之前的兩個js檔。
var appModule = angular.module('app', []);
appModule.directive('qrcode', function() {
return {
restrict: "A",
scope: {
text : '=',
options : '='
},
link: function(scope, elem, attrs) {
var $elem, options;
$elem = $(elem);
options = { //取得元素的寬度與高度
width: $elem.width(),
height: $elem.height()
};
angular.extend(options, scope.options);
scope.$watch('text', function(newText) {
if (newText) {
options.text = newText;
$(elem).qrcode(options);//重產生二維碼
}
});
};
};
});
下載的方法在angular中可以封裝成一個service使用。
朋友們會使用qrcode產生二維碼了吧,確實很好用,希望大家能夠喜歡。