sequelize.import is not a function error 에러 해결
2020. 8. 23. 01:33ㆍMysql, Sequelize
sequelize.import is not a function error 가 갑자기 떴다 구글링을 해보니
models/ index.js파일에서 수정을 해주어야 한다.
이부분을
.forEach((file) => {
const model = sequelize.import(path.join(__dirname), file) // error occurs here
db[model.name] = model
})
이렇게 변경해주면 잘된다.
.forEach((file) => {
const model = require(path.join(__dirname, file))(
sequelize,
Sequelize.DataTypes
)
db[model.name] = model
})
안되는 이유가 6버전에서는 안된다고 한다.
728x90
반응형
'Mysql, Sequelize' 카테고리의 다른 글
Sequelize-cli 초기 실행 시 주의점 (0) | 2020.08.29 |
---|---|
DB생성, DB에있는 테이블 검색 (0) | 2020.08.29 |
윈도우에서 MYSQL CMD 접속하는 방법 (0) | 2020.08.29 |
sequelize 컬럼명 생성시 주의 (0) | 2020.04.07 |
데이터 베이스 UTF8설정 (0) | 2020.04.07 |