Nodejs express 獲取url參數,post參數的三種方式

Js代碼  :
  1. express獲取參數有三種方法:官網實例:  
      
    Checks route params (req.params), ex: /user/:id  
    Checks query string params (req.query), ex: ?id=12  
    Checks urlencoded body params (req.body), ex: id=
    

      

     

一、例如:127.0.0.1:3000/index,這種狀況下,咱們爲了獲得index,咱們能夠經過使用req.params獲得,經過這種方法咱們就能夠很好的處理Node中的路由處理問題,同時利用這點能夠很是方便的實現MVC模式;javascript

 

二、例如:127.0.0.1:3000/index?id=12,這種狀況下,這種方式是獲取客戶端get方式傳遞過來的值,經過使用req.query.id就能夠得到,相似於PHP的get方法;java

三、例如:127.0.0.1:300/index,而後post了一個id=2的值,這種方式是獲取客戶端post過來的數據,能夠經過req.body.id獲取,相似於PHP的post方法;express

 

注:post請求須要app

Js代碼  
  1. var express        =         require("express");  
  2. var bodyParser     =         require("body-parser");  
  3. var app            =         express();  
  4.   
  5. // need it...  
  6. app.use(bodyParser.urlencoded({ extended: false }));  
  7.   
  8. app.post('/login',function(req,res){  
  9.   var user_name=req.body.user;  
  10.   var password=req.body.password;  
  11.   console.log("User name = "+user_name+", password is "+password);  
  12.   res.end("yes");  
  13. });  
相關文章
相關標籤/搜索