gpt4 book ai didi

angularjs - 检查 json 字典是否有空字符串作为值

转载 作者:行者123 更新时间:2023-12-03 08:04:17 25 4
gpt4 key购买 nike

我想要实现的是仅当 JSON 对象中的元素值NOT 等于空字符串时才显示和元素 '' .

例如:

假设我有以下 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仅当值不等于 '' 时才可见.我怎样才能做到这一点?

最佳答案

使用 ngShow:http://docs.angularjs.org/api/ng.directive:ngShow

<span ng-show="user.age != ''" class="age">Age: {{ user.age }}</span>
<span ng-show="user.location != ''" class="location">Location: {{ user.location }}</span>

关于angularjs - 检查 json 字典是否有空字符串作为值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14871218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com