datas = [{name : 1 , phone:111},{name : 2 , phone:222},{name : 3 , phone: 333}];
並想讓以下重覆顯示的話,ng-repeat就不夠用了。
<h1>Name : {{data.name}}</h1>
<p style="border-bottom:thick solid #ff0000;">Phone : {{data.phone}}</p>
這時我們可以使用ng-repeat-start及ng-repeat-end,
在ng-repeat-start標示的tag及ng-repeat-end標示的tag之間(包括被ng-repeat-start和ng-repeat-end標示的tag),能夠存取到同一個串列資料中的各元素,下面就是一個使用的簡單例子:
我們先定義了ng-app、ng-controller及其中的datas。
var myapp = angular.module('myapp',[]);
myapp.controller('Ctrl',[function(){
var self = this;
self.datas = [{name : 1 , phone:111},{name : 2 , phone:222},{name : 3 , phone: 333}];
}]);
接著在設計要顯示的html:
<div ng-app="myapp" ng-controller="Ctrl as ctrl">
<h1 ng-repeat-start = "data in ctrl.datas">Name : {{data.name}}</h1>
<p ng-repeat-end style="border-bottom:thick solid #ff0000;">Phone : {{data.phone}}</p>
</div>
可以看到每一次的repeat都從串列資料(datas)中取出一組資料(包括了name及phone的資訊),並顯示一組
<h1>......</h1>
<p>.......</p>
參考資料:
沒有留言 :
張貼留言