この記事では、QR コードを生成する非常に簡単な方法を実現するための Nodejs を主に紹介し、QR コードを生成するための qr-image プラグインに基づいて、nodejs の関連操作スキルを分析します。必要な友人は参考にしてください。そのため、インストール時に Python をインストールする必要があり、Python3.0 以降はサポートされていません。 python2.0をインストールする場合は他の環境もインストールする必要があるので諦めました。 最後にニッチなプラグインを選びました
qr-image(https://github.com/alexeyten/qr-image)
フロントページは以下の通りですviews/index.ejs
<!DOCTYPE html> <html> <head> <title><%= title %></title> <link rel='stylesheet' href='/stylesheets/style.css'/> </head> <body> <h1><%= title %></h1> <img src="/create_qrcode?text=http://blog.csdn.net/fo11ower"/> </body> </html>
routes/index.js
var qr = require('qr-image') router.get('/', function (req, res, next) { res.render('index', {title: 'Express'}); }); router.get('/create_qrcode', function (req, res, next) { var text = req.query.text; try { var img = qr.image(text,{size :10}); res.writeHead(200, {'Content-Type': 'image/png'}); img.pipe(res); } catch (e) { res.writeHead(414, {'Content-Type': 'text/html'}); res.end('<h1>414 Request-URI Too Large</h1>'); } })
以上がNodejsでQRコードを生成する超簡単な方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。