English 中文(简体)
深入阐述集装箱观点的方便途径
原标题:Easy way to get a reference to the root container view in a deeply nested views
  • 时间:2012-05-16 20:49:05
  •  标签:
  • ember.js

在婚礼中,从根深蒂固的儿童观点来看,是否容易获得根本观点。 集装箱电文。 我把根子和子子子孙的财产捆起来:

Ember.ContainerView.create {

   childViews: [ child1 ]

   value: null

   child1: Ember.ContainerView.create {

       childViews: [ subchild1 ]

       subchild1 : Ember.View.create {

            valueBinding: "parentView.parentView.value"

       }
   }
}

我很想把子孙中的价值与价值挂钩,但我发现,我呼吁

parentView.parentView.parentView.property

并非非常奇怪。

最佳回答

您可使用<代码>nearestWithProperty方法。 例如见下面。

Ember.ContainerView.create({
   childViews: [ child1 ],
   value: null,
   isRootView: true,

   child1: Ember.ContainerView.extend({
       childViews: [ subchild1 ],

       subchild1 : Ember.View.extend({
           rootView: Ember.computed(function() {
               return this.nearestWithProperty( isRootView );
           }).property().cacheable(),
           valueBinding: "rootView.value"
       })
   })
});
问题回答

There is no rootView property mentioned in the API docs. What if value was defined in child1? You would still have the same problem of having to reference parentView.value. value should actually be defined in a controller and your subchild1 valueBinding should bind to the property in the controller.





相关问题
Are Recursive Collections possible in sproutcore2?

I have a customizable navigation tree that can be nested 3 levels deep. Templates: <script type="text/x-handlebars" data-template-name="NavItemView"> <a {{bindAttr href="href" class="...

ember.js widgets

I know that ember js is good for single page apps and it appears that you can localize ember js app to a single dom container rather than the whole page, so I m wondering if ember js would be a good ...

Ember.js binding models stored within an array

What is the correct way to bind from one model to another when the models are stored within an array? Typically I d imagine that this would be a Controller s content array, but to keep the example ...

rendering views dynamically on EmberJS

I just having a little trouble to implement a special kind of view for Ember, I m digging on the source for days but can t find how to make it work... Can you take a look and tell me what s wrong? It ...

热门标签