Angular Pipes

使用 angular pipes 工具,方便快速轉換內容。

angular 日期轉換,數值,文字,貨幣,浮點數等….。

  • slice
1
2
name:string 'Nigo'
<h2>{{ name | slice : 1 : 2 }}</h2>
  • number
1
2
3
<h2>{{ 5.678 | number : "1.2-3" }}</h2>
<h2>{{ 5.678 | number : "3.4-5" }}</h2>
<h2>{{ 5.678 | number : "3.1-2" }}</h2>
  • precent
1
<h2>{{ 0.78 | precent }}</h2>
  • currency
1
2
<h2>{{ 0.78 | currency }}</h2>
<h2>{{ 0.78 | currency : "EUR" : "code" }}</h2>
  • date
1
2
3
4
<h2>{{ date }}</h2>
<h2>{{ date | date:'short' }}</h2>
<h2>{{ date | date:'shortDate' }}</h2>
<h2>{{ date | date:'shortTime' }}</h2>

作者

Nigo Chen

發表於

2022-06-18

更新於

2022-06-18

許可協議

評論

© 2022

0個訪客