我有一个问题我在Loopback的文档中找不到答案。
假设我有一个模型Company
和一个模型Employee
。 Company
与其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对象。
我错过了什么?任何帮助将不胜感激!
答案 0 :(得分:11)
context.args.filter
似乎可以用于此目的。
作为旁注,您可能希望将其与客户端提供的内容合并,而不是替换where
。有关实施的想法,您可以参考:https://github.com/strongloop/loopback-datasource-juggler/blob/master/lib/utils.js#L56-L122