如何访问“外国人”' ng-repeat中的字段

时间:2014-12-05 10:43:55

标签: javascript angularjs

我有两个angularjs模型,我想使用firstkey的{​​{1}}作为firstcollection中的索引值。基本上我想使用前一个ng-repeat中的键迭代anothercollention.firstkey。这是一些代码,我希望能够理解我想要做的事情。我已经检查了所有的angularjs文档,但似乎都没有为这种情况提供示例。所有这些都假设您拥有相同ng-repeat模型中的数据。

anothercollention

1 个答案:

答案 0 :(得分:0)

好的,我想我明白了。您所需要做的就是:

<ul>
 <li ng-repeat="(firstkey, value) in firstcollection"></li>
 <ul>
   <li ng-repeat="(subkey, subvalue) in anothercollention[firstkey]"></li>
 </ul>
</ul>