码迷,mamicode.com
首页 > Web开发 > 详细

nodejs 动态创建二维码

时间:2017-08-12 12:48:32      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:param   exp   span   http   log   color   img   isp   write   

<!--弹出二维码-->
<div class="qrcode">
    <div>
        <p id="saoma">扫描二维码</p>
    </div>
</div>

js代码:

$.ajax({
     type: ‘POST‘,
     url: ‘/house‘,
     data: {
          data:‘你的数据‘
     },
     dataType: ‘json‘,
     success: function (data) {
          if (data.code == 0) {
               alert("成功");
               $(‘#saoma‘).before(‘<img class="qrcode_show" src="/newQrCode?url=‘+ data.data +‘"/>‘);              
          }else {
               alert(‘失败‘);
          }
     }
})

nodejs:

var express = require(‘express‘);
var request = require(‘request‘);
var url = require(‘url‘);
var qrImg = require(‘qr-image‘);
//生成二维码 app.get(‘/newQrCode‘, function (req, res) { var par = url.parse(req.url, true).query; var thisUrl = par.url; var thisParam = par.id; var imgUrl = thisUrl + ‘?id=‘ + thisParam; var img = qrImg.image(imgUrl, { size: 10 }); res.writeHead(200, { ‘Content-Type‘: ‘image/png‘ }); img.pipe(res); });

var bodyParser = require(‘body-parser‘);
var urlencodeRarser = bodyParser.urlencoded({ extended: false });
app.post(‘/house‘,urlencodeRarser,function (req, res) {
    var data = req.body;
    var result = JSON.stringify({code:0, data:‘http://www.baidu.com/&id=‘ + data.data});
    //console.log(result)
    res.end(result);

});

 

nodejs 动态创建二维码

标签:param   exp   span   http   log   color   img   isp   write   

原文地址:http://www.cnblogs.com/gxp69/p/7349626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!