国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 開(kāi)發(fā) > JS > 正文

11行JS代碼制作二維碼生成功能

2024-05-06 16:42:56
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

HTML代碼:

<img style="display: none" id="qrcode" data-width="100" data-height="100" data-url="https://www.baidu.com/">

相關(guān)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('生成二維碼參數(shù)錯(cuò)誤');   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、首先在頁(yè)面中加入jquery庫(kù)文件和qrcode插件

<script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.qrcode.min.js"></script> 

2、在頁(yè)面中需要顯示二維碼的地方加入以下代碼:

<div id="code"></div> 

3、調(diào)用qrcode插件。支持canvas和table兩種方式進(jìn)行圖片渲染

canvas方式:

$('#code').qrcode("http://www.baidu.com"); //任意字符串 

table方式:

$("#code").qrcode({   render: "table", //table方式   width: 200, //寬度   height:200, //高度   text: "www.helloweba.com" //任意內(nèi)容 }); 

4、如果生成的二維碼內(nèi)容包含文字,需要把字符串轉(zhuǎn)換成UTF-8

定義轉(zhuǎn)化方法:

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;  }

在生成的時(shí)候調(diào)用轉(zhuǎn)化方法:

var str = toUtf8("字符串測(cè)試!"); $('#code').qrcode(str);

二、在Vue-cli項(xiàng)目中動(dòng)態(tài)生成二維碼

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中定義生成二維碼的方法并調(diào)用

//動(dòng)態(tài)生成二維碼  useqrcode(){    //生成的二維碼內(nèi)容,可以添加變量    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!');    })  }


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到JavaScript/Ajax教程頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 炉霍县| 井冈山市| 吴堡县| 通江县| 兰溪市| 巴青县| 梁平县| 宽城| 鄄城县| 鲁甸县| 巴林左旗| 甘孜县| 凤阳县| 江津市| 凤凰县| 鄢陵县| 新宁县| 仙居县| 磐石市| 城市| 双桥区| 五莲县| 吉水县| 神池县| 黄石市| 板桥市| 南昌市| 澄迈县| 韩城市| 若羌县| 云和县| 桃江县| 桂阳县| 民权县| 葫芦岛市| 鄂州市| 英山县| 富民县| 拜泉县| 雅江县| 定日县|