Contoh
Menampilkan nomor sebagai format mata uang:
<div ng-app="myApp" ng-controller="costCtrl">
<p>Price = {{ price |
currency }}</p>
</div>
Cobalah sendiri " Definisi dan Penggunaan
The currency
Filter format nomor untuk format mata uang.
Secara default, format mata uang lokal yang digunakan.
Sintaksis
{{ number | currency : symbol : fractionsize }}
Nilai parameter
Value | Description |
---|---|
symbol | Optional. The currency symbol to be displayed. The symbol can be any character or text. |
fractionsize | Optional. The number of decimals. |
Contoh lebih
Contoh
Menampilkan harga dalam format mata uang Norwegia:
<div ng-app="myApp" ng-controller="costCtrl">
<p>Price = {{ price |
currency : "NOK" }}</p>
</div>
Cobalah sendiri " Contoh
Menampilkan harga dengan tiga deciamls:
<div ng-app="myApp" ng-controller="costCtrl">
<p>Price = {{ price |
currency : "NOK" : 3 }}</p>
</div>
Cobalah sendiri " Pages terkait
AngularJS Tutorial: Filter sudut