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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。