作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我给出了三个表:
1. 帖子(postId(PK), postTitle, postDescription)
2.campaign(campaignId(PK), platformId(FK), EffectiveFrom, EffectiveThrough, postArray: postId[])
//这里 postArray 包含 Integer 类型的 postIds
3.平台(平台ID(PK),平台名称)
我在 PostgreSQL 客户端上运行的查询是:
select posts.*, platforms.*, campaigns.campaignId, campaigns.platformId, campaigns.postArray
from campaigns
INNER JOIN platforms
ON campaigns.platformId = platforms.platformId
INNER JOIN posts
ON posts.postId = ANY(campaigns.postArray);
postid posttitle postdescription platformid platformname campaignid platformid postarray
1 Post1 This is Post1 1 Facebook 1 1 {1,2,3}
2 Post2 This is Post2 1 Facebook 1 1 {1,2,3}
3 Post3 This is Post3 1 Facebook 1 1 {1,2,3}
2 Post2 This is Post2 1 Facebook 2 1 {2,4,5}
4 Post4 This is Post4 1 Facebook 2 1 {2,4,5}
5 Post5 This is Post5 1 Facebook 2 1 {2,4,5}
2 Post2 This is Post2 3 LinkedIn 3 3 {2,3,4,5}
...
exports.findAll = (req, res, next) => {
Campaigns.findAll({
include: [
{
model: Platform,
required: true
},
{
model: Post,
required: true,
[Op.any]: ['"postArray"']
}
],
order:[
['"campaignId"', 'ASC']
]
})
.then(campaign=> {
res.status(200).json(campaign.sort(function(c1, c2){return c1.campaignId - c2.campaignId}));
})
.catch(err => {
console.log(err);
res.status(500).json({msg: "error", details: err});
});
};
db.campaigns.hasMany(db.posts,{sourceKey: 'postId', foreignKey: 'postArray'});
db.campaigns.hasOne(db.platforms,{sourceKey: 'platformId', foreignKey: 'platformId'});
最佳答案
Sequelize 不支持通过数组的关系。使用 include 创建 JOIN 仅支持在 sequelize 中定义的关系,并且由于无法在 sequelize 中定义关系,这是不可能的。
关于node.js - 将带有 ANY 运算符的 SQL 查询转换为 Sequelize findAll 函数的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56127836/
我是一名优秀的程序员,十分优秀!