如何使用 Sequelize ORM 进行复杂的组合查询?

如何使用 sequelize orm 进行复杂的组合查询?

如何使用 sequelize orm 进行组合查询

鉴于有对特定条件进行组合查询的需求,如 xx and xx or xxx,在使用 sequelize 查询 api 时可能会遇到挑战。以下提供一些解决方案:

// 直接使用 sequelize 查询 api
let literal = sequelize.literal(`( 字段a != 0 or 字段d != 0)`);
let where = {'字段c' : "xxxx" , [op.and] : literal , '字段b':{ [op.like] : '%xxx%'} }
let params = {
};
if(object.keys(where).length != 0){
    params['where'] = where;
}
if(attributes[0] != 'all'){
    params['attributes'] = attributes;
}
let item = await test.findone(params);

对于更复杂的查询条件,建议简化条件组合,并限制字段选择。例如:

let where = {'字段c' : "xxxx" , [op.and] : literal , '字段b':{ [op.like] : '%xxx%'} }

对于从前端接收的查询条件,可以将其组织成一个数组:

let list = [
    {
        "field" : "name",
        "value" : "张三",
        "op" : 'and',
        "action" : 'like'
    },
    {
        "field" : "age",
        "value" : 18,
        "op" : 'and',
        "action" : 'eq'
    }
]

然后遍历数组并构建 where 条件:

let where = {};
for (const {field , value , action , op} of list) {
    if(action == 'like'){
        where[field] = { [Op.like] : `%${value}%`} 
        // where[field] = { } 
    }else{
        where[field] = value;
    }
}

通过这种方式,您可以使用 sequelize 查询 api 构建复杂的组合查询条件。

以上就是如何使用 Sequelize ORM 进行复杂的组合查询?的详细内容,更多请关注www.sxiaw.com其它相关文章!