* express [#d30c5a68]
#author("2021-03-29T06:19:34+09:00","default:ryuichi","ryuichi")
** クエリーパラメータ・フォームデータの参照 [#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
- http://stackoverflow.com/questions/5710358/how-to-get-post-query-in-express-node-js
** 参考 [#p3a2d06e]
- GUIDE: http://expressjs.com/guide.html