我试过了:
if(angular.isUndefined(value)){ // something }
和
if(!(value)){ // something }
解决方法
var foo = false; if(!foo) { // will log console.log("foo is defined but false"); } if(angular.isUndefined(foo)){ // will not log as foo is defined console.log("foo is undefined") }
另一个没有定义foo的例子
if(!foo) { // will throw exception "Uncaught ReferenceError: foo is not defined " console.log("foo is defined but false"); } if(angular.isUndefined(foo)){ // will log console.log("foo is undefined") }
如此有效的angular.isUndefined(foo)除了评估之外别无他法
if(typeof foo == "undefined")
为了节省1个字符包裹是的.
while!-operator检查定义的变量是否计算为false
所以
if(!foo)
是一样的
if( foo != true)
更新:
正如评论中所述,当我写“评估为假”时,会出现false null undefined NaN“”(空字符串)并且包含0