我仍然相當新的角度,所以我想知道如何以最佳方式做這樣的事情:角度濾波相關數據
我有一個返回多種類型的「課程」和項目的JSON文件鍵入'教程'。教程的課程涉及與現場
data = [ { title: foo1, type: course, id:1}, { title: foo2, type: course, id:2}, { title: foo3, type: course, id:3}, { title: t1, type: tutorial, id:4, related_course:2}, { title: t2, type: tutorial, id:5, related_course:2}, { title: t3, type: tutorial, id:6, related_course:3}, ...
在我的控制器我有必然$scope
功能,讓我按類型進行過濾。
現在在我的模板
<div ng-repeat="item in data | filter:isCourse">
... display course data
<div ng-repeat="item in data | filter.isTutorial">
... display tutorial data
我想找到一種方法,以確保教程顯示符合當前顯示的過程的ID。
有什麼建議嗎?
謝謝! - V
可能幫助你http://stackoverflow.com/questions/35830338/ng-repeat-filter-to-iterate-o超過元素與特定屬性值/ 35830473#35830473 –