Postman

김형우·2021년 12월 27일
0

node.js

목록 보기
2/26
post-thumbnail
// localhost:3000/
router.get('/', function(req, res, next) {
  const obj = {id:'aaa', name:'홍길동'};
  res.send(obj);
  res.end();
});

이렇게 넣으면 postman 어플에서
localhost:3000/ 입력 후 요청 시

{
	id:'aaa', 
	name:'홍길동'
};

이렇게 뜸.
데이터만 표시해 준다.

profile
The best

0개의 댓글