Ext.isEmpty()的使用
程序员文章站
2022-04-09 13:57:14
说明如下: isEmpty( Object value, Boolean allowEmptyString ) : Boolean 如果传递的值为空,则返回 true,否则返回 false。该值被认为是空的如果他或是其一: null undefined a zero-length array a z ......
说明如下:
如果传递的值为空,则返回 true,否则返回 false。该值被认为是空的如果他或是其一:
null
undefined
- a zero-length array
- a zero-length string (除非
allowEmptyString
参数设置为true
)
测试如下:
Ext.isEmpty(null)
true
Ext.isEmpty(undefined)
true
Ext.isEmpty([])
true
-------------------------
Ext.isEmpty(0)
false
Ext.isEmpty("")
true
Ext.isEmpty(" ")
false
Ext.isEmpty(0,false)
false
Ext.isEmpty("",false)
true
Ext.isEmpty(" ",false)
false
Ext.isEmpty(0,true)
false
Ext.isEmpty("",true)
false
Ext.isEmpty(" ",true)
false