7

Backbone.jsは、モデルの検証を提供します。しかし、コレクション内のすべてのモデルが有効であることを確認する簡単な方法はありません。.isValidコレクションのプロパティはありません。

私はこのようなハックを使用します:

_.isEmpty(_.filter(myCollection.models, function(m) {return m.validationError;}))

コレクションを「検証」するためのより最適化された方法はありますか?

4

4 に答える 4

8

何らかの方法を使用するのはどうですか?

var hasErrors = _.some(myCollection.models, function(m) {
    return m.validationError;
});
于 2013-03-28T07:30:52.407 に答える
3

BackboneJS Collection は、 のようないくつかの UnderscoreJS メソッドを委譲someします。次のように使用できます。

var hasErrors = myCollection.some(function(model) {
    return model.validationError;
});
于 2015-03-25T10:19:40.187 に答える
0

これは古い質問であることはわかっていますが、この問題に対する私の決定を見てください。つまり、github repo backbone-collection-validationとして利用できます。では、詳細へ。このようなコレクションを検証するには

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.';
    }
  }
})

これでバックボーンを拡張する必要があります

//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;
};

またはこれで

//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);
    }
  }
};
于 2014-03-25T20:34:52.240 に答える