📜  Collect.js sortBy() 方法

📅  最后修改于: 2022-05-13 01:56:41.465000             🧑  作者: Mango

Collect.js sortBy() 方法

sortBy() 方法用于按给定键对集合进行排序。

句法:

collect.sortBy()

参数: collect() 方法采用一个参数,该参数转换为集合,然后对其应用 sortBy() 方法。

返回值:此方法返回按给定键排序后的集合。

下面的示例说明了 collect.js 中的 sortBy() 方法:

示例 1:

const collect = require('collect.js'); 
    
let obj = [ 
    { 
        subject: 'English', 
        score: 95, 
    }, 
   { 
        subject: 'math', 
        score: 86, 
    },
    { 
        subject: 'science', 
        score: 90, 
    }
]; 
     
const collection = collect(obj); 
  
const sorted = collection.sortBy('score');
  
let result = sorted.all();
        
console.log(result);

输出:

[
   { 
        subject: 'math', 
        score: 86, 
   }, 
   { 
        subject: 'science', 
        score: 90, 
   },
   { 
        subject: 'English', 
        score: 95, 
   }
]

示例 2:

const collect = require('collect.js'); 
    
let obj = [ 
    { product_name: 'apple_laptop', price: 100000 },
    { product_name: 'apple_watch', price: 50000 },
    { product_name: 'apple_mobile', price: 80000 },
];
     
const collection = collect(obj); 
  
const sorted = collection.sortBy('price');
  
let result = sorted.all();
        
console.log(result);

输出:

[
    { product_name: 'apple_watch', price: 50000 },
    { product_name: 'apple_mobile', price: 80000 },
    { product_name: 'apple_laptop', price: 100000 }
]