📜  Lodash _.entriesIn() 方法

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

Lodash _.entriesIn() 方法

_.entriesIn() 方法用于为指定对象创建一个由自己的和继承的可枚举字符串键值对组成的数组。如果 object 是 map 或 set,则返回其条目。

句法:

_.entriesIn(object)

参数:此方法接受上面提到的参数,如下所述:

  • object:此参数保存要查询的对象。

返回值:此方法返回键值对。

示例 1:

Javascript
// Defining Lodash variable
const _ = require('lodash');
  
// Initializing a function gfg
function gfg() {
  this.a = 5;
  this.b = 10;
  this.c = 15;
}
gfg.prototype.d = 20;
  
// Calling the _.entriesIn() function
_.entriesIn(new gfg);


Javascript
// Defining Lodash variable
const _ = require('lodash');
  
// Initializing a set
const object = {a: {b: 5}};
  
// Calling the _.entriesIn() function
_.entriesIn(object);


输出:

[ [ 'a', 5 ], [ 'b', 10 ], [ 'c', 15 ], [ 'd', 20 ] ]

示例 2:在下面的代码中,集合用作对象,因此 _.entriesIn()函数返回其条目。

Javascript

// Defining Lodash variable
const _ = require('lodash');
  
// Initializing a set
const object = {a: {b: 5}};
  
// Calling the _.entriesIn() function
_.entriesIn(object);

输出:

[ [ 'a', { b: 5 } ] ]

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