iT邦幫忙

鐵人檔案

2014 iT 邦幫忙鐵人賽
回列表

Sharping up with UnderScore.js library 系列

以實際的狀況表達 Underscore 的價值 , 希望在 UnderScore.js 的肩膀上 , 我們可以更專注在價值更高的事物上~

所有發表文章同步發佈於 http://www.dotblogs.com.tw/holmes2136/Default.aspx

鐵人鍊成 | 共 31 篇文章 | 1 人訂閱 訂閱系列文 RSS系列文
DAY 10

Underscore [10] : 使用 pluck 情境

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

2014-10-10 ‧ 由 holmes2136 分享
DAY 11

Underscore [11] : 使用 difference 情境

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

2014-10-11 ‧ 由 holmes2136 分享
DAY 12

Underscore [12] : 使用 max 情境

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

2014-10-12 ‧ 由 holmes2136 分享
DAY 13

Underscore [13] : 使用 filter 情境

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

2014-10-13 ‧ 由 holmes2136 分享
DAY 14

Underscore [14] : 使用 groupBy 情境

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

2014-10-14 ‧ 由 holmes2136 分享
DAY 15

Underscore [15] : 使用 after 情境

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

2014-10-15 ‧ 由 holmes2136 分享
DAY 16

Underscore [16] : How to Use key and values

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

2014-10-16 ‧ 由 holmes2136 分享
DAY 17

Underscore [17] : 使用 zip 情境

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

2014-10-17 ‧ 由 holmes2136 分享
DAY 18

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

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

2014-10-18 ‧ 由 holmes2136 分享
DAY 19

Underscore [19] : 使用 uniqueId 情境

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

2014-10-19 ‧ 由 holmes2136 分享