req body 가 undefined 일때 const bodyParser = require('body-parser') app.use(bodyParser.json()); 바디파서 추가하셈 받아오는 코드보다 위에 추가하셈!
오류정리
내용 업데이트 예정 npm install cors const cors = require('cors'); const corsOption = { origin: "*", optionSuccessStatus: 200, };
1. npm 안됨 VS Code - powershell 터미널 말고 - Command Prompt 환경변수 / 시스템변수 Path 에 아래 경로 추가 C:\Users\니 컴퓨터 이름\AppData\Roaming\npm\ 2. create-react-app 안됨 Unknown command: "create-react-app 콘솔창에 아래 두 줄 순서대로 치고 해보셈 npm config set prefix /usr/local npm install -g create-react-app
render is not a function app crashed - waiting for file changes before starting db 에 연결해서 데이터 가져올 때 위와 같은 오류가 뜨면 아래와 같은 코드 구성인지 확인한다. app.get('/list', (req, res) => { db.collection('post').find().toArray((err, res) => { console.log(res); res.render('list.ejs', { posts: res }); }); }) 여기서 문제는 app.get 에서 가져온 응답 res 과 db.collection 에서 가져온 결과 res 가 같은 변수명으로 선언되었기 때문에 나타나는 문제이다 아래와 같이 res 둘 중 하나를 req..
pom.xml 파일에 dependencies 내부에 아래 dependency 추가바람 cglib cglib 2.2.2 ---- 해결방법 참고 Maven Repository: cglib » cglib (mvnrepository.com) 스프링 실습 예제 (어노테이션, Configuration/Bean) (tistory.com)
에러코드 # Requesting Java AST from selection has encountered a problem Eclipse # An internal error occurred during: "Requesting Java AST from selection". com.ibm.icu.text.UTF16.isSurrogate(C)Z 상황 - 스프링 레거시 잘 깔고 서버 구동까지 확인 완료 - 자바 파일 생성했더니 저 창 계속 뜸 - 진짜 계속 뜸, 꺼도 계속뜸 나갔다 와도 계속 뜸, 프로젝트 새로 만들어도 계속 뜸 - 구글 찾아서 metadata 파일 뭐 바꿔도 계속 뜸 해결방법 > Preferences > Java > Editor > Mark 어쩌구 들어가서 Mark ~ 체크 해제