What are the differences between the observable, ObservableObject and Model? Thank You.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Model inherits from ObservableObject which inherits from Observable.
- Observable provides support for events - the bind, unbind and trigger methods.
- ObservableObject provides change tracking. Used by the DataSource and the MVVM framework.
- Model provides identity (via the
id
field) and field definition. Used by the DataSource whenschema.model
is set.