isEmpty( Mixed value, [Boolean allowBlank] ) : Boolean
返回true,如果传递进来的值为null、undefined或者一个空的字符串。
参数:
value : Mixed
需要测试的值
allowBlank : Boolean
(可选)返回true,如果一个空字符串不被认为是空。(译者注: 这句话的意思是如果传进来一个空字符串,并且allowBlank这个参数为true,函数会返回true,也就是允许空字符。 原文: Pass true if an empty string is not considered empty)
返回值:
Boolean
eg:
Ext.isEmpty(Ext.getCmp('newProjectWin'),true)
判断Id='newProjectWin'的组件是否存在,存在返回false,不存在返回True