使用SQLite数据库处理快速项目。
我得到了一个Sequelize TypeError,我已经工作了好几个小时但是我遇到了一堵砖墙:
C:\-----\node_modules\sequelize\lib\sequelize.js:392
this.importCache[path] = defineCall(this, DataTypes);
^
TypeError: defineCall is not a function
at Sequelize.import (C:\----\node_modules\sequelize\lib\sequelize.js:392:32)
at C:\----\models\index.js:25:32
在做了一些研究之后,看起来这可能是在尝试导入非续集对象时引起的。下面是有问题的index.js文件。
index.js:
var Sequelize = require('sequelize');
var config = {
dialect: 'sqlite',
storage: 'library.db'
};
var connection = new Sequelize(config);
var contents = fs.readdirSync(__dirname);
var db = {};
contents = contents.filter(function(file){
var currFileName = __filename.split('/');
var checkOne = file.substr(file.length - 3, 3) === '.js';
var checkTwo = file !== currFileName[currFileName.length - 1];
return checkOne && checkTwo;
});
contents.forEach(function(file){
var path = [__dirname, file].join('/');
var model = connection.import(path);
db[model.name] = model;
});
Object.keys(db).forEach(function(modelName){
var model = db[modelName];
if(model.associate) {
model.associate(db);
}
});
module.exports = {
models: db,
connection: connection
};
我没有任何名为defineCall的函数,不知道错误来自何处?
答案 0 :(得分:0)
这确实是由于导入了不是Sequelize模型的文件引起的。就我而言,这是因为我的index.js
提取了我的测试文件和模型,这些文件和模型位于同一目录中。尝试添加另一支类似checkOne
的支票,以排除以.test.js
结尾的任何内容。
答案 1 :(得分:0)
有了@Floppy的回答提示,我意识到如果将那些相关文件存储在一个文件夹中会更好。
例如制作一个名为Models
的文件夹,并将您的index.js
与所有模型(例如,用户模型,照片模型等)一起存储,然后尝试。
谢谢。