我有以下 tmpl
{{if (${this.getFileLimit()})}}
<div class="files_wrapper">
<div class="add-files">Click to add items</div>
</div>
{{/if}}
和 JS 代码:
$('.addFiles').html($("#template").tmpl(data,{
getFileLimit: function(){
if (Object.size(data.items) == 10)
return false;
else
return true;
}
}))
所以一般函数 ${this.getFileLimit()} 可以工作(它在屏幕上呈现文本),但没有运气将它添加到 IF 语句中,总是会出错。
Uncaught SyntaxError: Unexpected token {
任何人都有和 idia 如何在 IF 中使用函数?