在下划线模板中,如果逻辑如下:
<% 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}}