Collections in backbone js don't allow you to set attributes, but I often find that there is need to store some meta-information about a collection. Where is the best place to set that information?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
Just
There may be better places for storing specific meta data but this depends completely on what the meta data is. For storing generic meta data extending your collection constructor with a method to do deal with that should work. Be wary that if this meta data needs to be stored and loaded from the server then you've got a bigger task at hand. |
|||||||||||||
|
|
Using the function
Hope it'll helps. |
|||
|
|
I've upgrated Raynos's approach with event triggering, so we can bind to collection's attributes update.
|
||||
|
sealed(a new ECMAScript5 thing), you can just add properties to them if you like in the normal way:instance.prop = value;. Naturally you have to be careful not to use names that conflict with anything that already exists on the object... – T.J. Crowder May 8 '11 at 22:10