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

学习express之实现Json的Post请求

时间:2015-09-08 16:57:36      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

参考:http://yijiebuyi.com/blog/38f1437bf5b43fcf90e6529a81f258f1.html

参考:http://yijiebuyi.com/blog/90c1381bfe0efb94cf9df932147552be.html



1)引入模块body-parser

var bodyParser = require(‘body-parser‘);

// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({extended: false}));

// parse application/json
app.use(bodyParser.json());

2)post方法

router.post(‘/group‘, function(req, res, next) {
    console.log(‘post group redpack‘);
    console.log(req.headers[‘content-type‘])
    res.send(req.body);
});


3)注意事项

**bodyParser模块,应放在路由之前

var bodyParser = require(‘body-parser‘);

// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({extended: false}));

// parse application/json
app.use(bodyParser.json()); 

...

app.use(‘/‘, routes);
app.use(‘/app‘, apps);


学习express之实现Json的Post请求

标签:

原文地址:http://my.oschina.net/u/2351685/blog/502797

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