我有一个这样的模板数据上下文:
data = {
"attribute1": {
"attribute2": {}
}
}
在流星模板中,我正在做这样的事情:
{{#with attribute1}}
{{#if attribute2}}
show some content
{{/if}}
{{/with}}
如果 attribute2 是一个空对象,我不想显示任何内容。但是我尝试了两者{{#with attribute2}}{{/with}}
,{{#if attribute2}}{{/if}}
并且即使它是一个空对象,它仍然会在里面渲染内容。
检查空格键模板中对象是否为空的正确方法是什么?或者甚至有可能吗?