Programming/node.js2018. 10. 16. 19:15

node.js에서 url로 데이터를 받는 방법에 대한 글


/api/value 나

/api?key=value 나

POST header로 받는 법이 있음


[링크 : https://scotch.io/tutorials/use-expressjs-to-get-url-and-post-parameters]


(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. 

[링크 : https://stackoverflow.com/.../how-to-get-get-query-string-variables-in-express-js-on-node-js]

'Programming > node.js' 카테고리의 다른 글

node spawn args  (0) 2018.10.17
node post header max size  (0) 2018.10.16
node.js spawn 과 exec  (0) 2018.10.16
node tmp uuid  (0) 2018.10.12
node.js mysql PROTOCOL_ENQUEUE_AFTER_FATAL_ERROR 에러  (0) 2018.10.11
Posted by 구차니