關於二維碼的生成,有很多方法,本文主要給大家分享了用11行簡單的JS程式碼製作出二維碼生成的簡單功能,希望能幫助大家。
HTML程式碼:
<img style="display: none" id="qrcode" data-width="100" data-height="100" data-url="https://www.baidu.com/">
相關JS程式碼:
/** * 生成二维码 * data-width={宽度} * data-height={高度} * data-url={链接} * @param $ele */ var generatorQRCODE = function ($ele) { $ele.hide(); var params = $ele.data(); if(!params['width'] || !params['height'] || !params['url']){ console.log('生成二维码参数错误'); return false; } var image = new Image(); var imageUrl = "http://pan.baidu.com/share/qrcode?w=" + params['width'] + "&h=" + params['height'] + "&url=" + params['url'] + ""; image.src = imageUrl; $ele.attr('src', imageUrl); $ele.show(); }; generatorQRCODE($("#qrcode"));
再跟大家分享其他生成二維碼的案例:
使用jquery.qrcode產生二維碼
1、先在頁面中加入jquery庫檔案和qrcode外掛
<script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.qrcode.min.js"></script>
2、在頁面中需要顯示二維碼的地方加入以下程式碼:
<p id="code"></p>
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> <p id="query"> <h1>二维码:</h1> <canvas id="canvas"></canvas> </p> </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!'); }) }
相關推薦:
#以上是JS程式碼產生二維碼實例分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!