03-05-Operation.html
Dosyayı İndir
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8"/>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="https://code.angularjs.org/1.4.8/i18n/angular-locale_tr-tr.js"></script>
<script>
angular.module('myApp', []).controller('myCtrl', function($scope) {
$scope.products = [
{productId:301,productName:'Cep Telefonu',salesPrice:1200,
creationDate:'2017-03-11',categoryName:'Elektronik'},
{productId:302,productName:'Masaüstü Bilgisayar',salesPrice:3250,
creationDate:'2017-04-06',categoryName:'Bilgisayar'},
{productId:303,productName:'Diziüstü Bilgisayar',salesPrice:2100,
creationDate:'2018-07-05',categoryName:'Bilgisayar'}
];
});
</script>
</head>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<br/>
<table border="1" width="100%">
<tr>
<th>ÜRÜN KİM</th>
<th>ÜRÜN ADI</th>
<th>SATIŞ FİYATI</th>
<th>YARATMA TARİHİ</th>
<th>KATEGORİ ADI</th>
</tr>
<tr ng-repeat="product in products ">
<td>{{product.productId }}</td>
<td>{{product.productName | lowercase}}</td>
<td>{{product.salesPrice | currency:"TL"}}</td>
<td>{{product.creationDate | date:"dd/MMMM/yy"}}</td>
<td>{{product.categoryName | uppercase}}</td>
</tr>
</table>
</div>
</body>
</html>
Dosyayı İndir