2014-02-11 154 views
0

我在做什麼是我有職位ngRepeat,我有另一個意見。我不能得到這些帖子的評論,除非我有一些如何將帖子的ID傳遞到ngRepeat注​​釋中。如何將一個ID從一個ngRepeat傳遞給另一個?

<div ng-app="posts" ng-controller="PostCtrl"> 
    <div id="posts_container" ng-repeat="post in posts"> 

    <div id="the_post"> 


     <!-- I've got to pass the post.id to get the right comments for that post --> 
     <div id="the_comments" ng-repeat="comment in comments"> 

     </div> 
    </div> 
    </div> 
</div> 

這在PHP foreach循環中很簡單,但我沒有在angularjs中弄清楚它。嵌套ng-repeat也很好嗎?謝謝你的幫助。

回答

1

是否filter你在找什麼?

<div id="the_comments" ng-repeat="comment in comments | filter:{id:post.id}"> 
+0

哇這麼簡單,它的作品就像一個魅力謝謝你的回答。 – dragonfire1119

相關問題