提问人:swom bhai 提问时间:9/19/2023 最后编辑:swom bhai 更新时间:9/19/2023 访问量:18
如何在 .tmpl 文件中添加 if 语句?
How can I add an if statement in my .tmpl file?
问:
以下是我的代码:
WSG公司
func abc(){
something = []
return template = templatefunc(something: something)
}
.tmpl 文件:
<div>
<div>{something}</div>
</div>
我想在 {something} 中添加一个 if 语句,如果它是空数组,div 不应该渲染,我试过
{if !empty(something)}
{something}
{/if}
但这似乎不起作用,我怎样才能让它工作?我不想使用jQuery,因为我的项目不允许它
答: 暂无答案
评论