我正在尝试使用sequelize with mysql在2个相关表上插入多行。
基于sequelize transaction cannot insert because of foreign key?我试图创建一个事务,如果我只执行一次promise,它似乎有效,但如果我在显示外键问题的循环上执行代码,它就会失败。
以下是代码:
const config = {
"username": "root",
"password": "",
"database": "sequelize_test",
"host": "127.0.0.1",
"dialect": "mysql",
"pool": {
"max": 1,
"min": 0,
"idle": 20000,
"acquire": 20000
}
};
const Sequelize = require('sequelize')
const sequelize = new Sequelize(config.database, config.username, config.password, config)
const Project = sequelize.define('projects', {
id: {
type: Sequelize.INTEGER,
allowNull: false,
autoIncrement: true,
primaryKey: true
},
authorId: {
type: Sequelize.INTEGER
},
name: {
type: Sequelize.STRING
}
})
const Author = sequelize.define('authors', {
id: {
type: Sequelize.INTEGER,
allowNull: false,
autoIncrement: true,
primaryKey: true
},
name: {
type: Sequelize.STRING,
}
})
Author.hasMany(Project, {
foreignKey: 'authorId',
sourceKey: 'id'
})
Project.belongsTo(Author, {
foreignKey: 'id'
})
sequelize
.sync({
force: true
})
.then(() => {
var projectAuthors = [{
projectName: "Proj 1",
authorName: "Author 1"
}, {
projectName: "Proj 2",
authorName: "Author 1"
}, {
projectName: "Proj 3",
authorName: "Author 1"
}, {
projectName: "Proj 4",
authorName: "Author 2"
}, {
projectName: "Proj 5",
authorName: "Author 3"
}];
//Insert all the records on the array
projectAuthors.forEach(function(project) {
sequelize
.transaction(function(t) {
//First insert the author
return Author.findOrCreate({
where: {
name: project.authorName
},
transaction: t
}).spread(function(author) {
//With the id obtained on the previous step, insert the project
return Project.findOrCreate({
where: {
name: project.projectName,
authorId: author.id
},
transaction: t
});
})
});
});
});
修改
根据Ellebkey的建议,这是我的控制器使用include。
sequelize
.sync({
force: true
})
.then(() => {
var projectAuthors = [{
projectName: "Proj 1",
authorName: "Author 1"
}, {
projectName: "Proj 2",
authorName: "Author 1"
}, {
projectName: "Proj 3",
authorName: "Author 1"
}, {
projectName: "Proj 4",
authorName: "Author 2"
}, {
projectName: "Proj 5",
authorName: "Author 3"
}];
//Insert all the records on the array
projectAuthors.forEach(function(project) {
sequelize
.transaction(function(t) {
//First insert the author
return Project.findOrCreate({
where: {
name: project.projectName,
author: {
name: project.authorName
}
},
include: [{
association: Project.Author,
}],
transaction: t
});
});
});
});
确实失败了:
无效的价值{name:'作者3' }
编辑2(表创建工作)
感谢Ellebkey和一些人的建议,我的模型看起来像这样:
const Project = sequelize.define('projects', {
name: {
type: Sequelize.STRING
}
});
const Author = sequelize.define('authors', {
name: {
type: Sequelize.STRING,
}
});
Project.belongsTo(Author, { as: 'Author', foreignKey : 'authorId'});
Author.hasMany(Project, { as: 'Author', foreignKey : 'authorId'});
但是使用答案中的create()代码,我仍然可以得到:
未处理拒绝错误:无效值{name:undefined}
顺便说一下,我正在使用sequelize 4.37.6
提前致谢
答案 0 :(得分:0)
好的,首先,根据我的经验,不建议使用foreignKey
进行关联,这会让人感到困惑。请改用as
,而且您不需要为每个模型创建id
,为您做续集。
const Project = sequelize.define('projects', {
name: {
type: Sequelize.STRING
}
})
现在,回到关联,这会在AuthorId
表格上创建Project
列
Project.belongsTo(Author, { as: 'Author'})
const Author = sequelize.define('authors', {
name: {
type: Sequelize.STRING,
}
})
Author.hasMany(Project, { as: 'Author'})
sequelize
.sync({
force: true
})
.then(() => {
最后,对于create
include
,您需要根据之前的声明创建对象。考虑一下,你会Find
使用Author
获得Projects
,所以每个对象应该是这样的:
var projectAuthors = [{
name: "Author 1",
//This must have the same syntax as you declared on your asociation
Author: [{
name: "Proj 1"
},{
name: "Proj 2"
}]
},{
name: "Author 2",
Author: [{
name: "Proj 3"
},{
name: "Proj 4"
}]
},];
projectAuthors.forEach(function(project) {
sequelize
.transaction(function(t) {
//First insert the author
return Author.findOrCreate({
where: {
//check this I'm not sure
name: project.name, //this is the Author name
},
include: [{
model: Project,
as: 'Author'
}],
transaction: t
});
});
});
});
您获得的错误是因为您从未在模型上声明authorName
。