• 追加された行はこの色です。
  • 削除された行はこの色です。
* express [#d30c5a68]


** クエリーパラメータ・フォームデータの参照 [#oa7b4120]
 (req.params) Checks route params, ex: /user/:id 
 
 (req.query) Checks query string params, ex: ?id=12 Checks urlencoded body params  
 
 (req.body) ex: id=12 To utilize urlencoded request bodies, req.body should be an object. 
            This can be done by using the _express.bodyParser middleware.

- http://stackoverflow.com/questions/6912584/how-to-get-get-query-string-variables-in-node-js/6913287#6913287

** 参考 [#p3a2d06e]
- GUIDE: http://expressjs.com/guide.html


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS