Inflearn コミュニティ Q&A
에러
作成
·
339
1
xhr.js:178 GET http://localhost:3000/api/hello 404 (Not Found)
Uncaught (in promise) Error: Request failed with status code 404
at createError (createError.js:16)
at settle (settle.js:17)
at XMLHttpRequest.handleLoad (xhr.js:61)
라고 브라우저 콘솔에 뜨는데 이유가 뭘까요?
nodejsreact
回答 4
3
2
0
app.use('api/favorite',require('./routes/favorite')); //before
app.use('api/favorite',require('./routes/favorite')); //after
index.js 경로 적을때 맨 앞에 /를 붙이지 않아서 오류났었습니다.. 참고해주세요!
0





