📜  Lodash _.sortedIndexBy() 方法

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

Lodash _.sortedIndexBy() 方法

_.sortedIndexBy() 方法用于返回可以插入元素的数组的最低索引并保持其排序顺序。此外,它接受 iteratee,它被调用来获取值和数组的每个元素来计算它们的排序排名。它使用二进制搜索。

句法:

_.sortedIndexBy(array, value, [iteratee=_.identity])

参数:此方法接受三个参数,如上所述,如下所述:

  • array:此参数保存已排序的数组。
  • value:此参数保存要评估的值。
  • Iteratee:这是迭代每个元素的函数。

返回值:此方法返回值应插入数组的索引。

示例 1:这里使用 const _ = require('lodash') 将 lodash 库导入文件。

Javascript
// Requiring the lodash library 
const _ = require("lodash"); 
    
// Original array 
var objects = [{ 'x': 4 }, { 'x': 6 }];
    
// Use of _.sortedIndexBy() 
// method 
let index = _.sortedIndexBy(objects, 
    { 'x': 5 }, function(o) { return o.x; });
    
// Printing the output 
console.log(index);


Javascript
// Requiring the lodash library 
const _ = require("lodash"); 
    
// Original array 
var objects = [{ 'x': 4 }, { 'x': 6 }];
    
// Use of _.sortedIndexBy() 
// method 
let index = _.sortedIndexBy(objects, { 'x': 9 }, 'x');
    
// Printing the output 
console.log(index);


Javascript
// Requiring the lodash library 
const _ = require("lodash"); 
    
// Original array 
let x = ['ajax', 'django', 'mongoDb',  
       'react', 'reactnative', 'yarn']  
    
// Use of _.sortedIndexBy() 
// method 
let index = _.sortedIndexBy(x, 'luby', 5);
    
// Printing the output 
console.log(index);


输出:

1

示例 2:

Javascript

// Requiring the lodash library 
const _ = require("lodash"); 
    
// Original array 
var objects = [{ 'x': 4 }, { 'x': 6 }];
    
// Use of _.sortedIndexBy() 
// method 
let index = _.sortedIndexBy(objects, { 'x': 9 }, 'x');
    
// Printing the output 
console.log(index);

输出:

2

示例 3:

Javascript

// Requiring the lodash library 
const _ = require("lodash"); 
    
// Original array 
let x = ['ajax', 'django', 'mongoDb',  
       'react', 'reactnative', 'yarn']  
    
// Use of _.sortedIndexBy() 
// method 
let index = _.sortedIndexBy(x, 'luby', 5);
    
// Printing the output 
console.log(index);

输出:

3

注意:这在普通 JavaScript 中不起作用,因为它需要安装库 lodash。