您好,登錄后才能下訂單哦!
這篇“es6中filter過濾器怎么使用”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“es6中filter過濾器怎么使用”文章吧。
在es6中,filter過濾器對數組元素進行過濾并返回一個新的數組。filter()函數會創建一個新數組,其包含通過所提供回調函數實現的測試的所有元素,語法“arr.filter(callback(element[, index[, array]])[, thisArg])”;如果沒有任何數組元素通過測試,則返回空數組。
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)
// ["蘋果", "香蕉", "芒果"]
以上就是關于“es6中filter過濾器怎么使用”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。