장바구니에 상품이 없습니다.
home2 › 게시판 › Node.js, Express 게시판 › get의 응답이 좀 이상합니다
post 요청 및 응답은 잘되는데 get 요청시 You need to enable JavaScript to run this app. 라고 뜹니다 app.get('/send_email', function(req,res){ console.log("email :"); }); 콘솔창에도 아무것도 찍히지않습니다. 코드와 postman을 get 에서 post로 바꾸면 잘됩니다,..
app.get('*', function (요청, 응답) { 응답.sendFile(path.join(__dirname, '../musicplayer/build/index.html')); }); 리액트에서 라우팅하기위한 코드때문이였네요 맨아래로 옮겨서 해결했습니다