バックボーンのソースを読んでいるときに、オブジェクト指向が気になっていました。 http://backbonejs.org/docs/backbone.html (「this.parse(attributes);」を検索)
Backbone.Model = function(attributes, options) {
var defaults;
attributes || (attributes = {});
console.log('attributes : ', attributes);
if (options && options.parse) {
//LOOK HERE
attributes = this.parse(attributes);
}
if (defaults = getValue(this, 'defaults')) {
attributes = _.extend({}, defaults, attributes);
}
if (options && options.collection) this.collection = options.collection;
this.attributes = {};
this._escapedAttributes = {};
this.cid = _.uniqueId('c');
if (!this.set(attributes, {silent: true})) {
throw new Error("Can't create an invalid model");
}
delete this._changed;
this._previousAttributes = _.clone(this.attributes);
this.initialize.apply(this, arguments);
};
プロトタイプで parse を使用できるようになるのはなぜですか? メソッドは後で _.extend(Backbone.Model.prototype, Backbone.Events, {