アンダースコア テンプレートでは、次のような if ロジックを実行できます。
<% if(type === 'video') { %>
// Something
<% } %>
ハンドルバーで同様のことができますか? これを試しましたが、うまくいきません:
{{#if type === 'video'}}
// Something
{{/if}}
ヘルパーも使用してみましたが、まだうまくいきません:
Handlebars.registerHelper('isVideo', function(type) {
if(type === 'video') {
return true;
}
return false;
});
{{#if isVideo type}}
// Something
{{/if}}