Bookshelf andWhere/orWhere语法问题

Bookshelf andWhere / orWhere syntax problem

await bookshelf
    .model('User')
    .where({ org_id: this.get('id'), isAdministrator: 1 })
    .fetchAll()
    .then...

这有效并选择具有特定 org_idisAdministrator 等于 1 的记录。

我想扩展此 .where 行,使其也可以选择员工和合作伙伴。我希望他按照以下代码工作:

await bookshelf
    .model('User')
    .query({
        where: { org_id: this.get('id'), isAdministrator: 1 },
        orWhere: { org_id: this.get('id'), isAssociate: 1 },
        orWhere: { org_id: this.get('id'), isPartner: 1 }
    })
    .fetchAll()
    .then...

但是,它只选择管理员和合作伙伴,不选择合作伙伴。我做错了什么?

问题是.query函数的参数:

{
        where: { org_id: this.get('id'), isAdministrator: 1 },
        orWhere: { org_id: this.get('id'), isAssociate: 1 },
        orWhere: { org_id: this.get('id'), isPartner: 1 }
}

无效,因为 javascript 对象不能有多个相同的键。改为:

bookshelf.model('User').query((queryBuilder) => {
    queryBuilder
        .where({ org_id: this.get('id'), isAdministrator: 1 })
        .orWhere({ org_id: this.get('id'), isPartner: 1 })
        .orWhere({ org_id: this.get('id'), isAssociate: 1 });
    }).fetchAll({debug: true}).then(function(users){
        //...
})