registerHelper でブロックの内容を取得する方法はありますか?
次のテンプレートがあるとします。
{{#myif test}}thats the content i want to have{{/myif}}
そして、次の registerHelper コード:
Ember.Handlebars.registerBoundHelper('myif', function(test)
{
// do something
return <content of handlebars block>;
});
どうもありがとう!