Beispiel
Zeigt die Zahl als Währungsformat:
<div ng-app="myApp" ng-controller="costCtrl">
<p>Price = {{ price |
currency }}</p>
</div>
Versuch es selber " Definition und Verwendung
Die currency
Filter formatiert eine Zahl zu einem Währungsformat.
Standardmäßig wird das Gebietsschema Währungsformat verwendet.
Syntax
{{ number | currency : symbol : fractionsize }}
Parameterwerte
Value | Description |
---|---|
symbol | Optional. The currency symbol to be displayed. The symbol can be any character or text. |
fractionsize | Optional. The number of decimals. |
Mehr Beispiele
Beispiel
Rufen Sie den Preis in der norwegischen Währung Format:
<div ng-app="myApp" ng-controller="costCtrl">
<p>Price = {{ price |
currency : "NOK" }}</p>
</div>
Versuch es selber " Beispiel
Rufen Sie den Preis mit drei deciamls:
<div ng-app="myApp" ng-controller="costCtrl">
<p>Price = {{ price |
currency : "NOK" : 3 }}</p>
</div>
Versuch es selber " Verwandte Seiten
AngularJS Tutorial: Angular Filter