मुझे नहीं लगता कि यह अभी के लिए सेलजेएस 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
}
}
मुझे आशा है कि यह मदद करता है। वैसे मुझे इस सुधार के लिए एक पुल अनुरोध भेजने के लिए कल सेलजेएस कोर को समय मिल जाएगा।
पी/एस:सेलजेएस कोर काफी अच्छी तरह से बनाया गया है। शायद सभी फीचर अनुरोधों को संभालने के लिए कोर कमिटर बहुत व्यस्त हैं। आइए योगदान दें!