Nodejs各類請求的參數響應

參考:https://cnodejs.org/topic/50a333d7637ffa4155c62ddbnode

1)get方式json

請求/api?username=helloapi

路由相應restful

app.get('/api',function(req,res){
    var fileName = req.query.username;
    res.send(fileName);
})


2)post方式,app

請求/apipost

路由相應spa

app.get('/api/:username',function(req,res){
    var fileName = req.body.username;
    res.send(fileName);
})


3)post一個json3d

請求/apirest

路由相應code

app.get('/api/:username',function(req,res){
    var fileName = req.body;
    res.send(fileName);
})


4)restful方式

請求/api/tom

路由相應

app.get('/api/:username',function(req,res){
    var fileName = req.params.username;
    res.send(fileName);
})
相關文章
相關標籤/搜索