2014-02-13 53 views
1

我在/components/some-dir/some-component.js中有一個組件,並試圖在.hbs模板文件中使用它。如何在嵌入式應用程序工具箱模板中訪問嵌套目錄中的組件

{{#some-dir/some-component set=this}}{{/some-dir/some-component}} 

但handlebars引發錯誤。 燼應用程序工具包documentation說'/'被轉換爲'。'並使用別名:

// controller/posts.js 
export default Ember.Controller.extend({ 
    needs: ['posts/details'], 
    postsDetails: Ember.computed.alias('controllers.posts/details') 
}); 

// templates/posts.hbs 
// because {{controllers.posts/details.count}} does not work 
{{postsDetails.count}} 

但無法讓它與組件類似地工作,所以不知道它是否應用?

回答

0

正如EAK Issue542

「現在,只要不使用子迪爾斯,而只是更多的破折號(希望我們能htmlbars /車把內解決此)」,「回答」由stefanpenner〜stefanpenner

相關問題