作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的表中有两个外键,我正在尝试使用 OR 运算符来仅选择具有参数的表。
有没有可能的方法来做到这一点?类似的东西:
include: [
{
model: Segurado,
as: "segurado",
},
where: {
[Op.or]: {
{
model: Produtor,
as: "produtor1",
where: {
codigo: id_produtor,
},
},
{
model: Produtor,
as: "produtor2",
where: {
codigo: id_produtor,
},
},
}
}
],
最佳答案
尝试在 where 子句中调用模型。像那样:
{
where: {
[Op.or]: [
{ '$produtor1.documento$': documento_produtor },
{ '$produtor2.documento$': documento_produtor }
]
},
include: [
{
model: Produtor,
as: "produtor1"
},
{
model: Produtor,
as: "produtor2"
}
]
}
关于javascript - sequelize 中两个外键之间的 OR 运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61942717/
我是一名优秀的程序员,十分优秀!