我有两个模型,他们给出了n:m关系:老师,班级现在我想做一个查询,显示学生当前的班级,他们负责(不是表中的所有班级)。
这是我的课堂模型:
module.exports = (sequelize, DataTypes) => {
var Model = sequelize.define('Class', {
name : DataTypes.STRING,
category : {type: DataTypes.STRING, unique: true},
day : DataTypes.ENUM('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'),
hour : DataTypes.STRING,
});
Model.associate = function(models){
this.Students = this.belongsToMany(models.Student, {through: 'StudentClass'});
};
Model.associate = function(models){
this.Staffs = this.belongsToMany(models.Staff, {through: 'ClassTeacher'});
};
Model.prototype.toWeb = function (pw) {
let json = this.toJSON();
return json;
};
return Model;
教师模式:
module.exports = (sequelize, DataTypes) => {
var Model = sequelize.define('Staff', {
first : DataTypes.STRING,
last : DataTypes.STRING,
email : {type: DataTypes.STRING, allowNull: true, unique: true, validate: { isEmail: {msg: "Email invalid."} }},
phone : {type: DataTypes.STRING, allowNull: true, unique: true, validate: { len: {args: [7, 20], msg: "Phone number invalid, too short."}, isNumeric: { msg: "not a valid phone number."} }},
password : DataTypes.STRING,
role : DataTypes.ENUM('Head', 'Teacher'),
});
Model.associate = function(models){
this.Students = this.belongsToMany(models.Student, {through: 'TeacherStudent'});
};
Model.associate = function(models){
this.Classes = this.belongsToMany(models.Class, {through: 'TeacherClass'});
};
我发现并尝试的是:
Class.findAll({
attributes: ['id', 'name'],
include: [{
model:Staff,
attributes: ['first', 'last'],
through: {
attributes: ['StaffId', 'ClassId'],
// where:{ClassId:1}
}
}]
}).then(classes => {
res.send(classes);
});
但它给我看了所有的课程。
事先谢谢你的帮助。
1条答案
按热度按时间b0zn9rqh1#
如何在续集中实现多对多关联
我想你还没有把两个表之间的关系联系起来,看看上面提到的链接,它可能会帮助你理解我试图解释的内容。