📜  Lodash _.isPlainObject() 方法

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

Lodash _.isPlainObject() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、语言、函数、对象、数字等。

_.isPlainObject() 方法检查 value 是否是普通对象,这意味着由 Object 构造函数创建的对象或 [[Prototype]] 为 null 的对象。

句法:

_.isPlainObject(value)

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

  • value:它是用于检查值的函数。

返回值:如果 value 是普通对象,则此方法返回 true,否则返回 false。

示例一:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
var object = _.isPlainObject(Object.create(null));
  
// Using the _.isPlainObject() method
let plain_data = ( object);
  
// Printing the output 
console.log(plain_data);

输出:

true

示例 2:

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
var object = _.isPlainObject([1, 2, 3]);
  
// Using the _.isPlainObject() method
let plain_data = ( object);
  
// Printing the output 
console.log(plain_data);

输出:

false

示例 3:

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
var object = _.isPlainObject({ 'x': 0, 'y': 0 });
  
// Using the _.isPlainObject() method
let plain_data = ( object);
  
// Printing the output 
console.log(plain_data);

输出:

true

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