當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Collect.js flatten()用法及代碼示例


Collect.js是一個包裝器庫,用於處理數組和對象,dependency-free且易於使用。 flatten()方法用於將多維集合展平為一維集合,並返回展平的一維集合元素。

用法:

collect(array).flatten()

參數:collect()方法采用一個參數,該參數將轉換為集合,然後在其上應用flatten()方法。

返回值:此方法返回展平的一維集合元素。

範例1:下麵的示例說明了collect.js中的flatten()方法



HTML

const collect = require('collect.js'); 
  
let obj = [ 
    { 
        name:'Rahul', 
        score:98, 
    }, 
    { 
        name:'Aditya', 
        score:96, 
    }, 
    { 
        name:'Abhishek', 
        score:80 
    } 
]; 
   
const collection = collect(obj);  
const flatten_Val = collection.flatten(1);  
console.log(flatten_Val.all());

輸出:

[ 'Rahul', 98, 'Aditya', 96, 'Abhishek', 80 ]

範例2:

html

const collect = require('collect.js'); 
   
let arr = [ 
    ['Geeks', 'GFG', 'GeeksforGeeks'], 
    [10, 20, 30, 40, 50] 
]; 
   
const collection = collect(arr); 
   
const flatten_Val = collection.flatten(1); 
   
console.log(flatten_Val.all());

輸出:

[ 'Geeks', 'GFG', 'GeeksforGeeks', 10, 20, 30, 40, 50 ]




相關用法


注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 Collect.js flatten() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。