gpt4 book ai didi

javascript - ng-repeat 遍历对象中的对象

转载 作者:行者123 更新时间:2023-12-03 11:23:24 24 4
gpt4 key购买 nike

我很困惑如何遍历这个数据模型。

$scope.object = [ {person1: {name: 'jon', height: 100}} , {person2: {name: 'joe', height: 200}}, {person3: {name: 'lisa', height: 150}}]

我正在像这样尝试 ng-repeat

<tr ng-repeat = "person in object[0]">
<td>{{person.name}}</td>
</tr>

这当然只会显示“jon”。我怎样才能得到所有人(x).name?我可以将他们全部命名为 person 而不是 person1、person2,但我的项目数据模型不允许这样做。能做什么?

谢谢

最佳答案

撇开对象数据中缺少的大括号,您可以做一些愚蠢的事情

<tr ng-repeat="person in object">
<td ng-repeat="keys in person">
{{keys.name}}
</td>
</tr>

...这会做你想做的事(内部 ng-repeat 只会循环一次,因为每个“人”只有一个键(“person1”,“person2”...)但更好的解决方案是可能要更改您的数据结构以删除那些不必要的 person1、person2 等标识符并将其视为数组:

$scope.object = [
{name:'Joe'},
{name:'Susan'}
];

或者去掉数组中括号,把它当作一个哈希表:

$scope.object = {
person1: {name:'Bob'},
person2: {name:'Ted'}
};

使用这些数据结构中的任何一个,您的 HTML 模板都将是相同的:

<tr ng-repeat="person in object">
<td>{{person.name}}</td>
</tr>

现在您正在尝试将其结构化为数组和散列,这没有任何好处,只会让访问数据变得更加笨拙。

关于javascript - ng-repeat 遍历对象中的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24559290/

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