码迷,mamicode.com
首页 > 其他好文 > 详细

GET /hello/fred/0926xxx572

时间:2016-02-12 12:48:28      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

GET /hello/fred/0926xxx572

app.get(‘/hello/:name/:tel‘, function(req, res) {
console.log(req.params.name);
console.log(req.params.tel);
});
req.params.xxxxx 从path中的变量
req.query.xxxxx 从get中的?xxxx=中
req.body.xxxxx 从post中的变量

GET /hello/fred/0926xxx572

标签:

原文地址:http://www.cnblogs.com/jayruan/p/5186956.html

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