我在SQL Server中有预先存在的表,我想在NodeJs项目中使用这些表。
第一个表是Report表,它有{ReportId,ReportName}列。
第二个表是收藏夹表,它有{FavouriteId,ReportId,UserName}列。
您可以在下面找到模型定义。我想分配外键并使依赖。最后,我想为特定用户选择带有收藏夹标志的报告。
module.exports = function(sequelize, DataTypes) {
var Favourite = sequelize.define("IUI_Favourites", {
favourite_id: {
type: DataTypes.INTEGER,
primaryKey: true,
field: 'iui_favourite_id'
},
report_id: {
type: DataTypes.INTEGER,
field: 'iui_report_id'
},
username: {
type: DataTypes.STRING,
field: 'iui_username'
}
},
{
timestamps: false,
freezeTableName: true
});
return Favourite;
};
module.exports = function(sequelize, DataTypes) {
var Report = sequelize.define("IUI_Reports", {
report_id: {
type: DataTypes.INTEGER,
primaryKey: true,
field: 'iui_report_id'
},
report_name: {
type: DataTypes.STRING,
field: 'iui_report_name'
}
},
{
timestamps: false,
freezeTableName: true
});
return Report;
};
你能帮帮我吗?
提前谢谢。
答案 0 :(得分:3)
在Favourite
模型中,您需要使用classMethods
函数创建属性associate
。
// in Favourite model
classMethods: {
associate: function(models){
this.belongsTo(models.Report, { foreignKey: 'iui_report_id' });
}
},
timestamps: false,
freezeTableName: true
});
这定义了模型Favourite
可以通过数据库中的Report
外键字段分配iui_report_id
。
然后,在Report
模型中,您必须定义1:M关系:
// in Report model
classMethods: {
associate: function(models){
this.hasMany(models.Favourite, { foreignKey: 'iui_report_id' });
}
},
timestamps: false,
freezeTableName: true
});
要返回受指定用户青睐的报告,您必须使用指定条件在findAll()
上调用Report
方法:
Report.findAll({
include: [
{
model: Favourite,
where: {
username: 'admin'
}
}
]
}).then((reports) => {
// here you get reports that are favourited by user with username 'admin'
});
这将生成一个SQL查询,该查询将使用Report
和Favourite
上的JOIN
条件返回reports.id = favourite.report_id
和favourite.username = 'admin'
个对象。我希望这就是你要找的东西。
修改强>
根据评论,如果指定的报告受到任何用户的青睐,您希望将收藏夹标记设置为true
。为此,您必须将此标记字段添加到Report
模型,例如is_favourited
。它可以是存储在数据库中的字段,也可以是virtual sequelize字段,它自己的getter
(虚拟字段不存储在数据库中)。
如果是虚拟字段,它可能看起来像这样:
var Report = sequelize.define('report', {
...
is_favourited: {
type: DataTypes.VIRTUAL(DataTypes.BOOLEAN),
get: function() {
return sequelize.models.Favourite.count({
where: { iui_report_id: this.get('report_id') }
}).then((countResult) => {
return countResult > 0;
});
}
}
}, {
// additional model options e.g. classMethods etc.
});
如果存在任何具有指定true
值的Favourite
对象,则此虚拟属性将返回iui_report_id
。但是,它是异步的,因此您需要使用.then()
<{1}}来调用它,例如report.get('is_favourited').then((result) => { console.log(result); });
另一方面,如果要将该标志存储在数据库中,则必须在创建新的is_favourited
模型实例时手动将Favourite
字段值设置为true。为此,您可以使用Favourite
模型上的afterCreate
挂钩。
// in Favourite model
timestamps: false,
freezeTableName: true,
hooks: {
afterCreate: function(instance, options) {
return sequelize.models.Report.findById(instance.get('iui_report_id').then((report) => {
if ( company && !company.get('is_favourited') ) {
return company.set('is_favourited', true).save().then(() => { return; });
}
}
}
// in Report model
var Report = sequelize.define('report', {
...
is_favourited: {
type: DataTypes.BOOLEAN,
defaultValue: false
}
}, {
// other model options...
});
编辑2
根据您上次的评论,您想要创建一个像这样的查询
SELECT Reps.rep_id, Reps.rep_name, CASE WHEN Favs.rep_id IS NULL THEN FALSE ELSE TRUE END is_favourited
FROM Reps
LEFT OUTER JOIN (SELECT rep_id FROM Favs WHERE user = 'alex') Favs ON Reps.rep_id = Favs.rep_id
此查询将始终返回is_favourited = TRUE
,因为ON
子句中的JOIN
条件为Reps.rep_id = Favs.rep_id
,因此即使Favs.rep_id
为NULL
},然后ON
条件不会通过(因为Reps.rep_id
是主键,不能是NULL
)。
但是,如果你真的想要执行这样的查询,它将看起来像这样
Report.findAll({
include: [
{
model: Favourite,
where: { username: 'alex' }, // or any other passed value
attributes: []
}
],
attributes: ['report_id', 'report_name', sequelize.literal('CASE WHEN "IUI_Favourites"."report_id" IS NULL THEN FALSE ELSE TRUE END is_favourited')],
raw: true // because your Report model does not have is_favourited field
}).then((rows) => {
// result
});