ตัวอย่าง
รูปแบบของรางวัลเป็นตัวเลข ::
<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 Tutorial: กรองเชิงมุม