2014-02-10 119 views
1

即時通訊使用早午餐,我添加了一個自定義幫手。這在正常的視圖模板中很好用,但在compositeView的itemView模板中,傳遞給helper的變量是未定義的。沒有幫手,模板編譯得很好。車把幫手:沒有傳遞變量

// Helper 
Handlebars.registerHelper 'mny', (val) -> 
    val.toString().replace(/\B(?=(\d{3})+(?!\d))/g, " ") 

// Example 
{{price}} //it works 
{{mny price}} //it doesn't 

回答

0

車把需要知道它的一個功能,以便把#在MNY前

{{#mny price}} 

希望修復它爲你