モデルの属性をcollectionOptionsに渡すにはどうすればよいですか?そのようにparam0を渡そうとすると、代わりにインスタンスthis
が参照されます。window
MyModel
var MyModel = Backbone.RelationalModel.extend({
defaults: {
param0: null,
},
relations: [
{
type: Backbone.HasMany,
key: 'others',
relatedModel: 'OtherModel',
collectionType: 'OtherModelCollection',
collectionOptions: {param0: this.get('param0')}
}
]
});