728x90
SMALL
const { User } = require('./models/User');
라고 적었는데도
const user = new User(req.body);
에서 'TypeError: User is not a constructor'라는 에러를 얻었다.
module.exports = { User };
가 정확히 작성되지 않았음.
728x90
LIST
'Node.js' 카테고리의 다른 글
User.findOne is not a function (0) | 2022.03.13 |
---|---|
[출석부 만들기] mongoose 연결하고 mongoDB compass에서 확인하기 (0) | 2022.02.21 |
백, 프론트 서버 동시 실행 시 한쪽을 무시해요 (0) | 2022.02.15 |
[MongoDB] 몽구스 스키마 설계, password 암호화, 저장 (0) | 2022.02.13 |
[Node.js] node-sqlite DB에서 여러 row를 반환하는 쿼리 (0) | 2022.01.28 |