python-style class variables in javascript -
python-style class variables in javascript -
it can hard find these kinds of questions since can phrased many different ways, please forgive me if duplicate. i'd define class variables on backbone model in such way still available on instances. done so:
var foo_base = { foo: bar }, foomodel = backbone.model.extend(foo_base, foo_base);
but quite ugly involves feeding same object both instance , class prototype. there simpler way involves 1 utilize of foo_base
or foo
?
http://backbonejs.org/#model-extend
backbone.model.extend(properties, [classproperties])
i unable understand why want send same object instance properties & classproperties.
to create model without instance properties classproperties, can like
var foo_base = { foo: bar }, foomodel = backbone.model.extend({}, foo_base);
javascript class backbone.js
Comments
Post a Comment