Lodash是Node.js中的一個模塊,可在underscore.js的頂部使用。 Lodash幫助處理數組,字符串,對象,數字等。Loadsh.sortBy()函數用於按升序對數組進行排序。
用法:
sortBy(collection, [iteratees=[_.identity]])
參數:該參數將集合作為第一個參數,第二個參數是可選的。第二個參數本質上是一個告訴排序的函數。
返回值:它返回排序的集合。
注意:在使用以下給定代碼之前,請通過npm install lodash安裝lodash模塊。
範例1:
let lodash = require("lodash");
let arr = [2, 1, 8, 4, 5, 8];
console.log("Before sorting:", arr);
console.log("After sorting:", lodash.sortBy(arr));
輸出:
範例2:
let lodash = require("lodash");
let arr = [2, 1, 5, 8, "a", "b", "10"];
console.log("Before sorting:\n" + arr);
console.log("After sorting:\n"
+ lodash.sortBy(arr));
輸出:
範例3:
let lodash = require("lodash");
let arr = [
{val:10, weight:100},
{val:9, weight:150},
{val:11, weight:10},
{val:1, weight:1000},
{val:74, weight:140},
{val:7, weight:100},
];
console.log("sorted by val:\n",
lodash.sortBy(arr, (e) => {
return e.val
}));
console.log("sorted by weight:\n",
lodash.sortBy(arr, (e) => {
return e.weight
}));
輸出:
相關用法
- Node.js GM sepia()用法及代碼示例
- Node.js GM blur()用法及代碼示例
- Node.js GM enhance()用法及代碼示例
- Node.js GM scale()用法及代碼示例
- Node.js GM contrast()用法及代碼示例
- Node.js GM drawPolygon()用法及代碼示例
- Node.js GM equalize()用法及代碼示例
- Node.js GM minify()用法及代碼示例
- Node.js GM sharpen()用法及代碼示例
- Node.js GM write()用法及代碼示例
- Node.js GM whiteThreshold()用法及代碼示例
- Node.js GM magnify()用法及代碼示例
- Node.js GM monochrome()用法及代碼示例
- Node.js GM drawPolyline()用法及代碼示例
- Node.js GM modulate()用法及代碼示例
- Node.js GM whitePoint()用法及代碼示例
- Node.js GM operator()用法及代碼示例
- Node.js GM despeckle()用法及代碼示例
- Node.js GM drawCircle()用法及代碼示例
注:本文由純淨天空篩選整理自tarun007大神的英文原創作品 Node.js lodash.sortBy() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。