parse:true runs the attributes through parse():

`new Model(attr, {parse:true})` will now call
Model.prototype.parse(attr). This is useful if
you want to create a model out of an object
structure from an external server.
This commit is contained in:
Magnus Holm
2011-12-04 17:48:47 +01:00
parent 8adac9136c
commit bdbcfa9da2
2 changed files with 12 additions and 0 deletions

View File

@@ -127,6 +127,7 @@
Backbone.Model = function(attributes, options) {
var defaults;
attributes || (attributes = {});
if (options && options.parse) attributes = this.parse(attributes);
if (defaults = this.defaults) {
if (_.isFunction(defaults)) defaults = defaults.call(this);
attributes = _.extend({}, defaults, attributes);

View File

@@ -51,6 +51,17 @@ $(document).ready(function() {
equals(model.one, 1);
});
test("Model: initialize with parsed attributes", function() {
var Model = Backbone.Model.extend({
parse: function(obj) {
obj.value += 1;
return obj;
}
});
var model = new Model({value: 1}, {parse: true});
equals(model.get('value'), 2);
});
test("Model: url", function() {
equals(doc.url(), '/collection/1-the-tempest');
doc.collection.url = '/collection/';