1. 程式人生 > >AngularJS-03 過濾器

AngularJS-03 過濾器

進行 cas format enc 行處理 方案 數字 symbol 格式化數字

過濾器

可以對輸入的值按照指定的方案進行處理後再輸出的函數。

1.貨比過濾器currency:{{ currency_expression | currency : symbol}}

2.日期過濾器:date格式化date到字符串,基於format的要求。

{{ date_expression | date : format}}

3.數字過濾器:number,格式化數字

4.大小寫:lowercase,uppercase

5.limitTo

AngularJS-03 過濾器