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也很好嗎?謝謝你的幫助。
哇這麼簡單,它的作品就像一個魅力謝謝你的回答。 – dragonfire1119