2
我有這個集合:如何使用Id在Angularjs中顯示來自集合的項目?
this.students = [
{ id: 1, courseId: 1, text: 'John' },
{ id: 2, courseId: 1, text: 'Andye' },
{ id: 3, courseId: 1, text: 'Inga' },
{ id: 4, courseId: 2, text: 'Jerry' }
];
我有這樣的標籤:
<div class="">
<label class="control-label">Student Name: </label>
<label class="control-label">"show student name"</label>
</div>
我想ID顯示例如學生姓名= 3, 在這個標籤:
<label class="control-label">"show student name"</label>
從AngularJS的集合中通過Id顯示文本的優雅方式是什麼?
你可以像'ng-repeat ='學生一樣在vm.students | filter:{id:3}「'ng-ng'中重複'' –
爲什麼你的模型中有一羣學生如果目標是隻顯示其中的一個?似乎有一個更大的設計問題。 –