我正在从客户端接收JSON对象数组,我需要将其动态转换为sequelize
查询
我尝试使用诸如case'and'之类的切换用例将使object.other = [op.and]等。但这不起作用。
我希望收到这样的东西:
[
{
other: "",
column: "name",
value: "Kevin"
}
{
other: "and",
column: "id",
value: "10"
}
]
,它应该转换为
Model.findAll({
where: {
[Op.and]: [{name : 'Kevin'},{id: 10}]
}
})