最近本人在學習開發NodeJs,使用到express框架,對於網上的學習資料甚少,所以本人會常常在開發中作一些總結。 express獲取參數有三種方法:官網介紹以下html
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模式;node
二、例如:127.0.0.1:3000/index?id=12,這種狀況下,這種方式是獲取客戶端get方式傳遞過來的值,經過使用req.query.id就能夠得到,相似於PHP的get方法; 三、例如:127.0.0.1:300/index,而後post了一個id=2的值,這種方式是獲取客戶端post過來的數據,能夠經過req.body.id獲取,相似於PHP的post方法;express
下面舉例介紹下這三個方法: 以下一個test.html代碼app
var app = require('express').createServer(); app.get('/:key', function(req, res){ console.log(req.params.key);//輸出index console.log(req.query.login_name);//輸出表單get提交的login_name res.send('great you are right for get method!');//顯示頁面文字信息 }); app.post('/:key', function(req, res){ console.log(req.params.key);//輸出index console.log(req.body.login_name);//輸出表單post提交的login_name res.send('great you are right for post method!');//顯示頁面文字信息</pre>}); app.listen(3000); 以後運行node index.js就能夠看到本效果,固然前提是你要先訪問test.html,至於如何經過express訪問一個html文件我就不詳細描述了,能夠參考以下代碼: global.fs=require('fs'); var realpath = VIEW + "test.html"; var file = fs.readFileSync(realpath); res.end(file);