有没有办法将所有绑定列表到Ember.Object?

时间:2012-09-12 18:49:44

标签: javascript ember.js

coffeescript中的示例

window.APP = Ember.Application.create()

APP.stuff = Ember.Object.create(
  name: "The Name"
)

APP.things = Ember.Object.create(
  nameBinding: "APP.stuff.name"
)

APP.gizmos = Ember.Object.create(
  nameBinding: "APP.stuff.name"
)

有没有检测到APP.stuff有2个绑定到它的名字属性?

1 个答案:

答案 0 :(得分:1)

我在挖掘了大量源代码后终于找到了答案....

我不确定开发者会推荐这种方法......但它给了我想要的东西。

基本上答案是打电话......

Ember.meta(APP.stuff)

这将返回一个包含“观察”哈希的对象,其中包含正在观看的属性和观察者数量。

Ember很酷。