gpt4 book ai didi

Angular2 如果 json 对象中有空值,如何使用 ngIf 显示其他文本?

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

您好,我无法理解 ngIf。

目前我有

的json对象
Profile:{
0:{name: 'Jen',
intro:'',
gender:'female',
age:'1992'},
1:{name: 'John',
intro:'Hi',
gender:'male',
age:'1988'}
}

第一个对象的介绍是空字符串,当它有空字符串时我想显示“用户还没有写它”。

我试过像这样使用 ngIf 但这当然行不通。我该怎么办?

<div *ngFor="let p of Profile">
<p class="fontstyle2">
{{p.intro}}
</p>

<p class="fontstyle2" *ngIf="p.intro=''">
The user hasn't written it yet
</p>
</div>

最佳答案

应该是==不是=

 <p class="fontstyle2" *ngIf="p.intro==''">
The user hasn't written it yet
</p>

关于Angular2 如果 json 对象中有空值,如何使用 ngIf 显示其他文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43444869/

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