gpt4 book ai didi

javascript - AngularJS - 检查 ng-repeat 中的空项

转载 作者:行者123 更新时间:2023-11-29 16:10:39 24 4
gpt4 key购买 nike

我正在使用 ng-repeat 来显示表格中的行,当两个项目不为空时,我想在 HTML 中显示 true。我进行了搜索,但找不到表达式或 ng 指令。

<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Account Enabled?</th>
<th>Username</th>
<th>Date Registered</th>
<th>User Displayname</th>
<th>Password Reset?</th>
<th>Password Valid To</th>
<th>Log On Count</th>
<th>Last Logged On</th>
<th>Is Primary Account?</th>
<th></th>
</tr>
</thead>
<tbody>
<tr data-ng-repeat="item in onlineAccounts.CommunicationMethods">
<td>
{{item.IsEnabled}}
</td>
<td>
{{item.UserName}}
</td>
<td>
{{item.CreatedOn}}
</td>
<td>
{{item.OnlineDisplayName}}
</td>
<td>
{{}}
</td>
<td>
<div ng-if="item.PasswordResetTokenValidTo != null && item.PasswordResetTokenValidTo != null">True</div>
<div ng-if="item.PasswordResetTokenValidTo == null item.PasswordResetTokenValidTo == null">False</div>
</td>
<td>
{{item.LogOnCount}}
</td>
<td>
{{item.LastLoggedOn}}
</td>
<td>
{{item.IsDefault}}
</td>
</tr>
</tbody>
</table>

这是我要更改的行:

  <div ng-if="item.PasswordResetTokenValidTo != null &&  item.PasswordResetTokenValidTo != null">True</div>
<div ng-if="item.PasswordResetTokenValidTo == null item.PasswordResetTokenValidTo == null">False</div>

我得到错误:

Error: [$parse:syntax] Syntax Error: Token 'item' is an unexpected token at column 40 of the expression [item.PasswordResetTokenValidTo == null item.PasswordResetTokenValidTo == null] starting at [item.PasswordResetTokenValidTo == null].

有没有 Angular 大师可以帮助我?

最佳答案

你忘记了&&

<div ng-if="item.PasswordResetTokenValidTo == null && item.PasswordResetTokenValidTo == null">False</div>
---------------------------------------------------^^

关于javascript - AngularJS - 检查 ng-repeat 中的空项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29253050/

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