在es6中,filter過濾器對陣列元素進行過濾並傳回一個新的陣列。 filter()函數會建立一個新數組,其包含透過所提供回呼函數實現的測試的所有元素,語法「arr.filter(callback(element[, index[, array]])[, thisArg])」;如果沒有任何數組元素通過測試,則傳回空數組。
本教學操作環境:windows7系統、ECMAScript 6版、Dell G3電腦。
ES6中的filter過濾器
filter函數俗稱過濾器,函數作用:對數組元素進行過濾並傳回一個新的數組;
filter() 方法建立一個新數組, 其包含透過所提供函數實現的測試的所有元素。
var sexData=["男","女","女","男","女"]; var filter2=sexData.filter(function(sex){ return sex==="女" }) //console.log(filter2) ["女", "女", "女"]
var porducts = [ {name: 'apple',type: 'red'} , {name: 'orange',type: 'orange'}, {name: 'banana',type: 'yellow'}, {name: 'mango',type: 'yellow'} ]; var filter2=porducts.filter(function(item){ return item.type==='yellow' }) //console.log(filter2) //0: {name: "banana", type: "yellow"}1: {name: "mango", type: "yellow"}
語法
var newArray = arr.filter( callback(element[, index[, array]])[, thisArg] )
參數
callback:回呼函數
element:arr數組中正在處理的資料
index:element的下標,可選
array:呼叫了filter 的數組本身,可選
thisArg:執行callback 時,用於this 的值,可選
傳回值
一個新的、由通過測試的元素組成的數組,如果沒有任何數組元素通過測試,則傳回空數組。
描述
filter 為陣列中的每個元素呼叫一次callback 函數,並利用所有使得callback 傳回true 或等價於true的值的元素建立一個新數組。 callback 只會在已經賦值的索引上被調用,對於那些已經被刪除或從未被賦值的索引不會被調用。那些沒有通過 callback 測試的元素會被跳過,不會被包含在新數組中。
callback 被呼叫時傳入三個參數: 元素的值、元素的索引、被遍歷的陣列本身
如果為filter 提供一個thisArg 參數,則它會被作為callback 被呼叫時的this 值。否則,callback 的 this 值在非嚴格模式下將是全域對象,嚴格模式下為 undefined。 callback 函數最終觀察到的 this 值是根據通常函數所看到的 "this"的規則決定的。
filter 不會改變原始數組,它會傳回過濾後的新數組。
filter 遍歷的元素範圍在第一次呼叫 callback 之前就已經確定了。在呼叫 filter 之後被加入到陣列中的元素不會被 filter 遍歷到。如果已經存在的元素被改變了,則他們傳入 callback 的值是 filter 遍歷到它們那一刻的值。被刪除或從來未被賦值的元素不會被遍歷到。
特殊用法:
1. 去掉空白字串、undefined、null
array.filter((value, index, arr) => {value})
2. 陣列去重
array.filter((value, index, arr) => {arr.indexOf(value) === index})
範例
1、過濾JSON 中的無效條目
以下範例使用filter() 建立具有非零id 的元素的json。
var arr = [ { id: 15 }, { id: -1 }, { id: 0 }, { id: 3 }, { id: 12.2 }, { }, { id: null }, { id: NaN }, { id: 'undefined' }];var invalidEntries = 0;function isNumber(obj) { return obj !== undefined && typeof(obj) === 'number' && !isNaN(obj);}function filterByID(item) { if (isNumber(item.id) && item.id !== 0) { return true; } invalidEntries++; return false; }var arrByID = arr.filter(filterByID);console.log('Filtered Array\n', arrByID); // Filtered Array// [{ id: 15 }, { id: -1 }, { id: 3 }, { id: 12.2 }]console.log('Number of Invalid Entries = ', invalidEntries); // Number of Invalid Entries = 5
2、去掉空字串、undefined、null
//2. 去掉空字符串、undefined、null var porducts = [ {name:''}, {name:"哈哈"} ]; var filter2=porducts.filter(function(item){ return item.name }) //console.log(filter2) //打印得出 0: {name: "哈哈"}
3、陣列去重
//3. 数组去重 array.filter((value, index, arr) => {arr.indexOf(value) === index}) var porducts = ['苹果','香蕉','苹果','芒果'] var filter2=porducts.filter(function(item,index,porducts){ return porducts.indexOf(item)==index }) //console.log(filter2) // ["苹果", "香蕉", "芒果"]
【推薦學習:javascript高階教學】
以上是es6中filter過濾器有什麼作用的詳細內容。更多資訊請關注PHP中文網其他相關文章!