第七屆 佳作

dev
Sharping up with UnderScore.js library
holmes2136

系列文章

DAY 11

Underscore [10] : 使用 pluck 情境

今天我們要在下圖的結構中尋找是否有基金代號 ( FUND_CODE ) FUND2 這一筆 , 在之前我們使用 find 以及 where 達到類似的目的 ,...

DAY 12

Underscore [11] : 使用 difference 情境

今天來介紹 Underscore 的 difference 語法 , 其語法如下 : _.difference([1, 2, 3, 4, 5], [5, 2,...

DAY 13

Underscore [12] : 使用 max 情境

今天我們來介紹 max 語法 , 其語法如下 : var numbers = [10, 5, 100, 2, 1000]; _.max(numbers);...

DAY 14

Underscore [13] : 使用 filter 情境

在前面我們使用過 find , where 等語法取得我們所需要的物件 , find 的話其實只能找到符合條件的第一筆 , 這次我們來使用跟 where 差不多...

DAY 15

Underscore [14] : 使用 groupBy 情境

在很多狀況下我們需要將資料做分組 , 就像在 SQL 裡面的 group by 功能一樣 , 在 Underscore 裡面也有一個 groupBy 功能 ,...

DAY 16

Underscore [15] : 使用 after 情境

今天來介紹 Underscore 的 after 語法 , 其為建立一個方法 , 當它執行了 count 次數之後才會有效果 , 其網站的範例如下 : var...

DAY 17

Underscore [16] : How to Use key and values

Underscore 有一個 function 可以方便的取出 keys and values 這樣的結構 , Keys sample : _.keys({on...

DAY 18

Underscore [17] : 使用 zip 情境

這次來介紹 zip 的用法 , 它可以將 每個數組中相應位置的值合併在一起 , 先來看看小小的 sample : _.zip(['moe', 'larry',...

DAY 19

Underscore [18] : 使用 template 樣板引擎

今天來介紹 Underscore 的樣板引擎 , 其使用了 _.template 的關鍵字 , 在使用之前我們得知道為啥使用樣板引擎 ? 它解決了啥問題 ? 我...

DAY 20

Underscore [19] : 使用 uniqueId 情境

今天來介紹 Underscore 一個不錯的功能 , uniqueId , 它能夠生成頁面唯一的 id , 簡單的範例如下 : _.uniqueId('cont...