The name is {{ lastName | uppercase }}
The name is {{ lastName | lowercase }}
The birthday is {{ birthday | date:"MM/dd/yyyy 'at' h:mma" }}
Price: {{ price | currency:"NT$":.0 }}
filter 為 i
輸入文字做 filter
點 Name 和 Country 可更變排序
| Name | Country |
|---|---|
| {{x.name}} | {{x.country}} |
自訂 filter:偶數字大寫
The name is {{ lastName | uppercase }}
The name is {{ lastName | lowercase }}
The birthday is {{ birthday | date:"MM/dd/yyyy 'at' h:mma" }}
Price: {{ price | currency:"NT$":.0 }}
- {{ x.name + ', ' + x.country }}
filter 為 i
- {{ x }}
輸入文字做 filter
- {{ x }}
點 Name 和 Country 可更變排序
Name Country {{x.name}} {{x.country}}
自訂 filter:偶數字大寫
- {{x | myFormat}}