gpt4 book ai didi

node.js - 使用带有 Sequelize.js 的 Node 将值附加到 where 条件

转载 作者:太空宇宙 更新时间:2023-11-04 03:15:40 28 4
gpt4 key购买 nike

如何将值附加到 Sequelize where 变量

let where = {

[Sequelize.Op.or]:[
{
category: {
[Sequelize.Op.like]: '%some text%'
}
},
{
category: {
[Sequelize.Op.like]: '%another text%'
}
}
]

}

我想为此 Sequelize.Op.or 添加一个新条件

我尝试了以下代码但没有成功:

where.[Sequelize.Op.or].push({ color: 'blue' } )

where[[Sequelize.Op.or]].push({ color: 'blue' } )

结束

const or = [Sequelize.Op.or]
where[or].push({ color: 'blue' }}

最佳答案

您尝试的第一个语法非常接近,您应该删除 where 之后的点:

where[Sequelize.Op.or].push({ color: 'blue' } )

关于node.js - 使用带有 Sequelize.js 的 Node 将值附加到 where 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56873609/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com