일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- jest
- Express
- JavaScript
- Queue
- GIT
- 공룡게임
- flask
- Sequelize
- Nest.js
- dfs
- Python
- Bull
- nodejs
- cookie
- OCR
- mongoose
- class
- typeORM
- 게임
- react
- AWS
- game
- MySQL
- Dinosaur
- MongoDB
- 정렬
- 자료구조
- nestjs
- TypeScript
- Today
- Total
목록Request (3)
포시코딩
정의 Request 클라이언트가 서버에게 전달하려는 정보나 메시지를 담는 객체 Response 서버에서 클라이언트로 응답 메시지를 전송 시켜주는 객체 서버 모듈 Node.js의 서버 모듈에는 대표적으로 http 모듈과 Express 모듈이 존재한다. Express 모듈은 http 모듈을 확장하여 제공하는데 Express 모듈은 기존 http 모듈의 메서드도 사용할 수 있지만, Express가 추가 제공하는 메서드나 속성들을 사용할 수 있다. 최근에는 Express의 메서드가 더욱 편리하기에 기존 http 모듈의 메서드는 잘 사용되고 있지 않다. Express 모듈의 req, res 객체 req 객체 req.app: req 객체를 통해 app 객체에 접근할 수 있다. req.ip: 요청한 Client의 i..
$.ajax({ type: "GET", // or "POST" url: "/member/comment", data: {target}, success: function (response) { GET 요청이든 POST 요청이든 javascript에서 data: 로 보낼 데이터를 전달하는것은 동일하다. 다만, flask에서 데이터를 받을 때 어떤 요청이냐에 따라 받는 방법이 달라진다. @app.route("/member/comment", methods=["GET"]) def member_comment_get(): target = request.args['target'] # ...생략 @app.route("/member/comment", methods=["POST"]) def member_comment_post..
axios.get('/test', { params: {key: value}, }).then((res)=>{ 보낼 데이터를 params: {} 로 감싸서 보낸다. app.get('/test', (req, res) => { // const client = req.body; const client = req.query; console.log(client); }); post일 때의 받는 req.body가 아닌 req.query를 통해 받으면 된다.