看看对象内部的新观察ES6特征,我想知道Ember和ES6是等价还是不同?我们可以安全地使用Watchjs polyfill with ember吗?
最佳答案
Looking at the new observe ES6 featues inside object,I was wondering whether Ember and ES6 are equivalent or different?
绝对不同. EmberJs拥有自己的系统,其中每个“模型”(可以观察其属性的对象)都包含在Ember.Object的实例中.
Ember.Object基类提供了侦听属性更改的所有机制.
为了使用它们,所有人都需要做的是.get()和.set()来访问和改变它的属性.
Can we use the Watchjs polyfill safely with ember?
我之前没有尝试过这个,但我会提醒它,因为我的有根据的猜测是它不起作用.这是因为,如上所述,Ember依赖于getter和setter来监听对象属性的更改,而不是Object.observe.因此,即使你使用这个WatchJs(或任何其他polyfill),EmberJs应用程序也会忘记这些更改,因为Ember.Object目前还不理解或使用它.