Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些看起来像这样的东西:
Parent = Backbone.Model.extend({}); Child = Parent.extend({});
当父母发生变化时,我可以在孩子身上监听一个事件吗?
看起来您误解了骨干模型的工作原理。在这种情况下,您正在“定义”模型“类”。您定义的模型(新模型)的各个实例不一定以任何方式相关。
但是,如果您有原型值而不是方法,那么原型值的更改将在模型的其他实例中自动更改。但这与主干存储模型实例值和相关事件的方式完全不同。
是否有您想要实现的用例?