sails.js关系的蓝图查询

时间:2014-12-03 15:36:21

标签: node.js postgresql sails.js blueprint

我正在使用postgresql支持运行sa 0.10.5,我想询问是否有任何方法可以通过关系过滤结果查询。例如:

http://api/documents?user.role=Admin

或者

http://api/documents?where={"user.role": "Admin"}

或者

http://api/documents?where={"user.role": {"like": "%Admin%"}}

模型Document与User的belongsTo关系,其中有一个名为role的属性(string f.e。)。

我无法进行此类查询,我错过了哪些内容?

谢谢!

2 个答案:

答案 0 :(得分:1)

我现在不认为SailsJS 0.10.5可以实现。实际上我想做同样的事情,所以我决定为此目的快速实施。

打开文件sails/lib/hooks/blueprints/actionUtil.js,编辑方法populateEach,如下所示:

populateEach: function ( query, req ) {
    var DEFAULT_POPULATE_LIMIT = sails.config.blueprints.defaultLimit || 30;
    var _options = req.options;
    var aliasFilter = req.param('populate');
    var shouldPopulate = _options.populate;

    // Convert the string representation of the filter list to an Array. We
    // need this to provide flexibility in the request param. This way both
    // list string representations are supported:
    //   /model?populate=alias1,alias2,alias3
    //   /model?populate=[alias1,alias2,alias3]
    if (typeof aliasFilter === 'string') {
        aliasFilter = aliasFilter.replace(/\[|\]/g, '');
        aliasFilter = (aliasFilter) ? aliasFilter.split(',') : [];
    }

    return _(_options.associations).reduce(function populateEachAssociation (query, association) {        
        // If an alias filter was provided, override the blueprint config.
        if (aliasFilter) {
            shouldPopulate = _.contains(aliasFilter, association.alias);
        }

        // Only populate associations if a population filter has been supplied
        // with the request or if `populate` is set within the blueprint config.
        // Population filters will override any value stored in the config.
        //
        // Additionally, allow an object to be specified, where the key is the
        // name of the association attribute, and value is true/false
        // (true to populate, false to not)
        if (shouldPopulate) {
            // IMPORTANT NOTE: This is my trick. We should take advanced options from request parameter to make requests even more flexible
            var populationOptions = req.param('populate_' + association.alias);

            if (!populationOptions) {
                var populationLimit = _options['populate_' + association.alias+'_limit'] ||
                                      _options.populate_limit ||
                                      _options.limit ||
                                      DEFAULT_POPULATE_LIMIT;
                populationOptions = {limit: populationLimit};
            }

            return query.populate(association.alias, populationOptions);
        }
        else { 
            return query;
        }
    }, query);
},

耶!现在,您的API可以处理其他关联过滤器,如下所示:

# POST /api/documents
{
    "where" : {
        // Normal conditions
    }
    "populate_user": {
        // Advanced condition for association 'admin'
        "where" : {
            "role" : {
                 "like": "%Admin%"
            }
        },
        "limit" : 4    
     }
}

我希望它有所帮助。顺便说一句,我明天会抽出时间向SailsJS核心发送这种改进的拉取请求。

P / S:SailsJS核心制作精良。可能核心提交者太忙,无法处理所有功能请求。让我们贡献一下!

答案 1 :(得分:0)

似乎"人口"在风帆v0.12正常工作。我测试了它的第一级 - 协会并且工作正常。但仍然没有得到一种可用且可靠的方法来获得只有满足深度关联中某些标准的主导模型记录 - >这是最初的问题,甚至是二级或三级深层问题。编写自定义控制器是现在唯一的方法,或者用更多逻辑来检修客户端来处理这样的"反向"搜索,这就是我现在正在做的事情。

首先,我找到满足所需标准的相关模型,然后从这个集合中取出" distinct"主导记录id。它通常意味着对服务器/级别的至少一个或两个以上的请求,因为最终查询具有" OR"主导模型id的数组。

此外,对某些网址发出POST请求以实际获取数据并不是一个好主意,因为它打破了REST原则的核心:https://spring.io/understanding/REST