Lodash - toPairsIn 方法



语法

_.toPairsIn(object)

为 object 创建一个由自身和继承的已枚举字符串键值对组成的数组,以便 _.fromPairs 使用。如果 object 是一个映射或集合,则返回其条目。

参数

  • object (对象) − 要查询的对象。

输出

  • (数组) − 返回键值对。

示例

var _ = require('lodash');
 
function Foo() {
   this.a = 1;
   this.b = 2;
}
Foo.prototype.c = 3;

console.log(_.toPairsIn(new Foo));

将以上程序保存在 tester.js 中。运行以下命令以执行此程序。

命令

\>node tester.js

输出

[ [ 'a', 1 ], [ 'b', 2 ], [ 'c', 3 ] ]
lodash_object.htm
广告