我想要实现的是仅当 JSON 对象中的元素值不等于空字符串时才显示和元素''
。
例如:
说我有以下 json 对象
{
'id' : 23,
'name' : 'Adrian Reese',
'age' : '',
'location' : ''
}
现在在我显示用户信息的部分模板中,我执行以下操作:
<h1>{{ user.name | capitalize }}</h1>
<span class="age">Age: {{ user.age }}</span>
<span class="location">Location: {{ user.location }}</span>
对于每个用户,我希望<span>'s
仅当值不等于时才可见''
。我怎样才能做到这一点?