您好,登錄后才能下訂單哦!
這篇文章主要介紹Angular.JS如何生成動態二維碼,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
一、場景
二維碼的場景,很多。這里是二維碼一種小場景,比如分享一個鏈接,商品鏈接,項目鏈接,優惠券鏈接…
技術實現,如果用后端實現,需要構造輸出一個圖片流。或者后端生產二維碼圖片,給圖片地址就好了。弊端,這個二維碼就是一個鏈接,后端的文件 IO 操作,還得考慮存儲。太費力。
如果前端實現,這樣就很輕松了。這只是個分享二維碼,分享出去給人家掃一掃。利用前端的 canvas,這里坐下調研。
jq 封裝的 qrcode.js ,文章網上一大堆。
angular js :https://github.com/monospaced/angular-qrcode
二、使用
1.安裝 angular-qrcode
git clone https://github.com/monospaced/angular-qrcode.git
cd angular-qrcode npm install
2.引入 js 文件
<script src="/node_modules/qrcode-generator/js/qrcode.js"></script> <script src="/node_modules/qrcode-generator/js/qrcode_UTF8.js"></script> <script src="/node_modules/angular-qrcode/angular-qrcode.js"></script>
并在你 angular 配置中加入對這個模塊的依賴:
angular .module('your-module', [ 'monospaced.qrcode', ]);
3.使用
在線案例:monospaced.github.io/angular-qrcode
使用元素:
<qrcode data="string"></qrcode>
具體配置參數:
<qrcode data="string" version="2" error-correction-level="Q" size="200" color="#fff" ba kground="#000"></qrcode>
作為可下載的圖片:
<qrcode data="string" download></qrcode>
作為有鏈接的二維碼:
<qrcode data="http://example.com" href="http://example.com" rel="external nofollow" ></qrcode>
download 和 href 互斥,不能同時使用。具體參數入下:
<qrcode version="{{version}}" error-correction-level="{{level}}" size="{{size}}" data="{{var}}" href="{{var}}" rel="external nofollow" color="{{color}}" background="{{background}}" download></qrcode>
以上是“Angular.JS如何生成動態二維碼”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。