当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.isEmpty()用法及代码示例


Lodash_.isEmpty()方法 检查是否价值是一个空对象,集合,Map或集合。如果对象没有自己的可枚举字符串键属性,则将它们视为空。如果集合的值为0,则认为它们为空长度。同样,如果Map和集合的值为0,则认为它们为空尺寸

用法:

_.isEmpty( value )

参数:此方法接受如上所述和以下描述的单个参数:

  • value:此参数保存需要检查为空值的值。

返回值:此方法返回一个布尔值(如果给定值是Empty值,则返回true,否则返回false)。

范例1:该方法返回真正当该值为null时。



// Defining Lodash variable 
const _ = require('lodash');  
     
// Checking for Empty Value 
console.log("The Value is Empty:"
        +_.isEmpty(null));

输出:

The Value is Empty:true

范例2:该方法返回真正当数组为空时。

// Defining Lodash variable 
const _ = require('lodash');  
     
var val = [] 
  
// Checking for Empty Value 
console.log("The Value is Empty:"
        +_.isEmpty(val));

输出:

The Value is Empty:true

范例3:该方法返回真正布尔值。

// Defining Lodash variable 
const _ = require('lodash');  
     
var val = false; 
  
// Checking for Empty Value 
console.log("The Value is Empty:" 
        +_.isEmpty(val));

输出:

The Value is Empty:true

范例4:在t他的榜样该方法将返回

// Defining Lodash variable 
const _ = require('lodash');  
     
var val = { "a":1 }; 
  
// Checking for Empty Value 
console.log("The Value is Empty:" 
        +_.isEmpty(val)); 

输出:

The Value is Empty:false

注意:由于它需要安装lodash库,因此在正常的JavaScript中将无法使用。

可以使用以下方法安装Lodash库npm install lodash.




相关用法


注:本文由纯净天空筛选整理自taran910大神的英文原创作品 Lodash _.isEmpty() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。