01-07-Repeat.html
Dosyayı İndir
<!DOCTYPE html>
<html >
<meta charset="UTF-8"/>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>
<div ng-app="" ng-init="products=[
{productName:'Cep Telefonu',salesPrice:1200},
{productName:'Dizüstü Bilgisayar',salesPrice:3250},
{productName:'Masaüstü Bilgisayar',salesPrice:1800}]">
<br/>
<ul>
<li ng-repeat="product in products">
<b>{{ product.productName }}</b> : <i>{{ product.salesPrice}} TL</i>
</li>
</ul>
</div>
</body>
</html>
Dosyayı İndir