Angular js 過濾器 筆記(轉自菜鳥教程)

來源:互聯網
上載者:User

標籤:輸入   指令   大小寫轉換   case   class   結果   根據   cap   大小寫   

1、uppercase,lowercase 大小寫轉換

{{ "lower cap string" | uppercase }}   // 結果:LOWER CAP STRING{{ "TANK is GOOD" | lowercase }}      // 結果:tank is good

2、date 格式化

{{1490161945000 | date:"yyyy-MM-dd HH:mm:ss"}} // 2017-03-22 13:52:25

3、number 格式化(保留小數)

{{149016.1945000 | number:2}}

4、currency貨幣格式化

{{ 250 | currency }}            // 結果:$250.00{{ 250 | currency:"RMB ¥ " }}  // 結果:RMB ¥ 250.00

5、filter尋找

輸入過濾器可以通過一個管道字元(|)和一個過濾器添加到指令中,該過濾器後跟一個冒號和一個模型名稱。

filter 過濾器從數組中選擇一個子集

 // 尋找name為iphone的行{{ [{"age": 20,"id": 10,"name": "iphone"},{"age": 12,"id": 11,"name": "sunm xing"},{"age": 44,"id": 12,"name": "test abc"}] | filter:{‘name‘:‘iphone‘} }}

6、limitTo 截取

{{"1234567890" | limitTo :6}} // 從前面開始截取6位{{"1234567890" | limitTo:-4}} // 從後面開始截取4位

7、orderBy 排序

 // 根id降序排{{ [{"age": 20,"id": 10,"name": "iphone"},{"age": 12,"id": 11,"name": "sunm xing"},{"age": 44,"id": 12,"name": "test abc"}] | orderBy:‘id‘:true }}// 根據id升序排{{ [{"age": 20,"id": 10,"name": "iphone"},{"age": 12,"id": 11,"name": "sunm xing"},{"age": 44,"id": 12,"name": "test abc"}] | orderBy:‘id‘ }}

Angular js 過濾器 筆記(轉自菜鳥教程)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.