gpt4 book ai didi

javascript - 在 Angular js中用字符串 "null"替换空数据

转载 作者:数据小太阳 更新时间:2023-10-29 06:16:01 28 4
gpt4 key购买 nike

我必须使用 ng-repeat 在 html 页面中显示表格。表中的大多数条目都有空数据,但我无法用空格或字符串 null 替换 null。我试过 {{ 行 || 'null' }} 但它没有帮助。当它生成表时,如果行中有大量空值,它会把它完全搞砸。

     <table>
<tr>
<th ng-repeat="colname in sqldata.collist">{{colname}}</th>
</tr>
<tr ng-repeat="rows in sqldata.tablist">
<td ng-repeat="row in rows">{{ row || 'null' }}</td>
</tr>
</table>

enter image description here

最佳答案

旧的怎么样ng-showng-hide如果值为“null”,则显示某些内容。

替换

{{ row || 'null' }}

<div ng-show="row">{{row}}/div>
<div ng-hide="row">null</div>

关于javascript - 在 Angular js中用字符串 "null"替换空数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32445113/

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