numberตัวกรองAngularJS


ตัวอย่าง

จัดรูปแบบรางวัลเป็นตัวเลข::

<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>

ความหมายและการใช้งาน

ตัวnumberกรองจัดรูปแบบตัวเลขเป็นสตริง


ไวยากรณ์

{{ string | number : fractionsize}}

ค่าพารามิเตอร์

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


ตัวอย่างเพิ่มเติม

ตัวอย่าง

แสดงน้ำหนักด้วยทศนิยม 3 ตำแหน่ง:

<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>

หน้าที่เกี่ยวข้อง

บทช่วยสอน AngularJS: ตัวกรองเชิงมุม