gpt4 book ai didi

Angular 4 : *ngIf with multiple conditions

转载 作者:太空狗 更新时间:2023-10-29 17:01:59 25 4
gpt4 key购买 nike

我有点糊涂了。如果结果有几种情况之一,我需要隐藏 block 。但似乎它无法正常工作......

<div *ngIf="currentStatus !== 'open' || currentStatus !== 'reopen' ">

<p padding text-center class="text-notification">{{message}}</p>

</div>

它只是在其他情况下出现的。它既不适用于 1 条件也不适用于 2。还尝试了 *ngIf="currentStatus !== ('open' || 'reopen') " 但它仅适用于 1 种情况。

最佳答案

除了多余的 ) 这个表达式将始终为 true 因为 currentStatus 将始终匹配以下两个条件之一:

currentStatus !== 'open' || currentStatus !== 'reopen'

也许你的意思是其中之一

!(currentStatus === 'open' || currentStatus === 'reopen')
(currentStatus !== 'open' && currentStatus !== 'reopen')

关于 Angular 4 : *ngIf with multiple conditions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43801823/

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