admin管理员组文章数量:1342918
Backbone.js offers validation for models. But there is no a simple way to check all models in collection are valid. No .isValid
property for collections.
I use a hack like this:
_.isEmpty(_.filter(myCollection.models, function(m) {return m.validationError;}))
Is there more optimized way to 'validate' collection?
Backbone.js offers validation for models. But there is no a simple way to check all models in collection are valid. No .isValid
property for collections.
I use a hack like this:
_.isEmpty(_.filter(myCollection.models, function(m) {return m.validationError;}))
Is there more optimized way to 'validate' collection?
Share Improve this question asked Mar 28, 2013 at 7:11 JuliaCesarJuliaCesar 1,02912 silver badges17 bronze badges 1- Seems like just iterating through your collection and checking .isValid would do what you're asking. Use .each to do the iteration... – kinakuta Commented Mar 28, 2013 at 7:17
4 Answers
Reset to default 8What about using some method?
var hasErrors = _.some(myCollection.models, function(m) {
return m.validationError;
});
The BackboneJS Collection delegates some UnderscoreJS methods like some
. You could use it like that:
var hasErrors = myCollection.some(function(model) {
return model.validationError;
});
lodash.js supports construction like this (with "_.pluck" callback shorthand):
_.some(myCollection.models, 'validationError');
I know that this is an old question but please look at my decision to this problem. In short, it is available as github repo backbone-collection-validation. Now, to details. To validate collection like this
Collection = Backbone.Collection.extend({
validate: function (collection) {
var nonExistIds = [];
_.forEach(collection, function (model) {
var friends = model.get('friends');
if (friends && friends.length) {
for (var i = friends.length - 1; i >= 0; i--) {
if (!this.get(friends[i])) {
nonExistIds.push(friends[i]);
}
}
}
}, this);
if (nonExistIds.length) {
return 'Persons with id: ' + nonExistIds + ' don\'t exist in the collection.';
}
}
})
You need to extend your Backbone with this
//This implementation is called simple because it
// * allows to set invalid models into collection. Validation only will trigger
// an event 'invalid' and nothing more.
var parentSet = Backbone.Collection.prototype.set;
Backbone.Collection.prototype.set = function (models, options) {
var parentResult = parentSet.apply(this, arguments);
if (options && options.validate) {
if (!_.isFunction(this.validate)) {
throw new Error('Cannot validate a collection without the `validate` method');
}
var errors = this.validate(this.models);
if (errors) {
this.trigger('invalid', this, errors);
}
}
return parentResult;
};
or with this
//This implementation is called advanced because it
// * doesn't allow to set invalid models into collection.
var parentSet = Backbone.Collection.prototype.set;
Backbone.Collection.prototype.set = function (models, options) {
if (!options || !options.validate) {
return parentSet.apply(this, arguments);
} else {
if (!_.isFunction(this.validate)) {
throw new Error('Cannot validate a collection without the `validate` method');
}
var clones = [];
_.forEach(this.models, function (model) {
clones.push(model.clone());
}, this);
var exModels = this.models;
this.reset(clones);
var exSilent = options.silent;
options.silent = true;
parentSet.apply(this, arguments);
var errors = this.validate(this.models);
this.reset(exModels);
if (typeof exSilent === 'undefined') {
delete options.silent;
} else {
options.silent = exSilent;
}
if (errors) {
this.trigger('invalid', this, errors);
return this;
} else {
return parentSet.apply(this, arguments);
}
}
};
本文标签: javascriptBackbonejs validate collectionStack Overflow
版权声明:本文标题:javascript - Backbone.js validate collection - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743619609a2511308.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论