我有两个angularjs模型,我想使用firstkey
的{{1}}作为firstcollection
中的索引值。基本上我想使用前一个ng-repeat中的键迭代anothercollention.firstkey。这是一些代码,我希望能够理解我想要做的事情。我已经检查了所有的angularjs文档,但似乎都没有为这种情况提供示例。所有这些都假设您拥有相同ng-repeat模型中的数据。
anothercollention
答案 0 :(得分:0)
好的,我想我明白了。您所需要做的就是:
<ul>
<li ng-repeat="(firstkey, value) in firstcollection"></li>
<ul>
<li ng-repeat="(subkey, subvalue) in anothercollention[firstkey]"></li>
</ul>
</ul>