在beforeRemote远程钩子中添加过滤器

时间:2015-03-31 16:04:28

标签: javascript loopbackjs strongloop

我有一个问题我在Loopback的文档中找不到答案。

假设我有一个模型Company和一个模型EmployeeCompany与其Employees之间存在1Xn的关系。调用/api/Employees时,服务器返回所有员工。

我只想返回与请求列表的用户在同一公司的员工列表。

为此,我创建了一个远程钩子

     Employee.beforeRemote('find', function(context, modelInstance, next) {
        var reject = function() {
            process.nextTick(function() {
                next(null, false);
            });
        };

        // do not allow anonymous users
        var userId = context.req.accessToken.userId;
        if (!userId) {
            return reject();
        }

        //I get the details of the user who sent the request 
        //to learn which company does he belong to
        Employee.findById(userId, function(err, user) {
            if(!context.req.query.filter) context.req.query.filter={};
            context.req.query.filter.where = {brandId:user.companyId};
            console.log(context.req.query);
            next();
        });

    });

我认为这应该每次都有用,但是看起来只有当find已经有一些像include这样的查询过滤器时才会起作用 - 虽然console.log会输出正确的context.req.query对象。

我错过了什么?任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:11)

context.args.filter似乎可以用于此目的。 作为旁注,您可能希望将其与客户端提供的内容合并,而不是替换where。有关实施的想法,您可以参考:https://github.com/strongloop/loopback-datasource-juggler/blob/master/lib/utils.js#L56-L122