11 Filters

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}}
			

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}}
AngularJS 提供以下 filter 做資料轉換: filter 加入表達式時,要加入「|」字元。