numberFilter AngularJS


Contoh

Format hadiah sebagai nomor::

<div ng-app="myApp" ng-controller="nCtrl">

<h1>{{prize | number}}</h1>

</div>

<script>
var app = angular.module('myApp', []);
app.controller('nCtrl', function($scope) {
    $scope.prize = 1000000;
});
</script>

Definisi dan Penggunaan

Filter numbermemformat angka menjadi string.


Sintaksis

{{ string | number : fractionsize}}

Nilai Parameter

Value Description
fractionsize  A number, specifying the number of decimals.


Lebih Banyak Contoh

Contoh

Tampilkan bobot dengan 3 desimal:

<div ng-app="myApp" ng-controller="nCtrl">

<h1>{{weight | number : 3}} kg</h1>

</div>

<script>
var app = angular.module('myApp', []);
app.controller('nCtrl', function($scope) {
    $scope.weight = 9999;
});
</script>

Halaman Terkait

Tutorial AngularJS: Filter Sudut