What's the shortest syntax to check if jsonObject is not undefined before accessing its errorMessage property?
var jsonObject = SomeMethodReturningAnObject();
if (jsonObject.errorMessage === undefined) // jsonObject can be undefined and this will throw an error
/* success! */
else
alert(jsonObject.errorMessage);
What's the shortest syntax to check if jsonObject is not undefined before accessing its errorMessage property?
var jsonObject = SomeMethodReturningAnObject();
if (jsonObject.errorMessage === undefined) // jsonObject can be undefined and this will throw an error
/* success! */
else
alert(jsonObject.errorMessage);
Share
asked Mar 6, 2012 at 18:17
contactmattcontactmatt
18.7k43 gold badges137 silver badges193 bronze badges
2
-
if(!jsonObject.errorMessage)
? – androidavid Commented Mar 6, 2012 at 18:18 - @androidavid reading the errorMessage property on a undefined or null object will throw an error – contactmatt Commented Mar 6, 2012 at 19:24
5 Answers
Reset to default 6You can use the &&
operator, since it doesn't evaluate the right-hand side if the left-hand side is undefined
:
if (jsonObject && jsonObject.errorMessage === undefined)
Another way to do this is to use the typeof
operator.
In JS if a variable has been declared but not set a value, such as:
var x;
Then x
is set to undefined
so you can check for it easily by:
if(x) //x is defined
if(!x) //x is undefined
However if you try to do if(x)
on a variable that hasn't even been declared, you'll get the error you allude to in your post, "ReferenceError: x is not defined".
In this case we need to use typeof
- MSDN Docs - to check.
So in your case something like:
if(typeof jsonObject !== "undefined") {
//jsonObject is set
if(jsonObject.errorMessage) {
//jsonObject set, errorMessage also set
} else {
//jsonObject set, no errorMessage!
}
} else {
//jsonObject didn't get set
}
This works because if you have a variable set to an empty object, x={}
, and try to get at a variable within that object that doesn't exist, eg x.y
, you get undefined
returned, you don't get a ReferenceError.
Be aware that the typeof
operator returns a string denoting the variable type, not the type itself. So it would return "undefined"
not undefined
.
Also, this very similar question on SO that could help you: How to check a not-defined variable in JavaScript
Hope this helps.
Jack.
var jsonObject = SomeMethodReturningAnObject();
if (jsonObject && jsonObject.errorMessage === undefined)
/* success! */
else
alert(!jsonObject ? "jsonObject not defined" : jsonObject.errorMessage);
if(jsonObject)
{
if (!jsonObject.errorMessage)
// success..
foo()
else
alert(jsonObject.errorMessage);
}
I'll answer the shorthand notation aspect as your specific situation is better served by an existing answer. As of ECMAScript 2018 we have spread syntax, which makes the whole thing much more concise:
if ( {...jsonObject}.errorMessage ) {
// we have errorMessage
} else {
// either jsonObject or jsonObject.errorMessage are undefined / falsey
// in either case, we don't get an exception
}
A straight if / else is not the perfect fit for your situation because you actually have 3 states, 2 of which are crammed into the same if branch above.
- No
jsonObject
: Failure - Has
jsonObject
, has noerrorMessage
: Success - Has
jsonObject
, haserrorMessage
: Failure
Why this works:
Accessing a property foo
from an object obj
, assuming the object is undefined, is essentially doing this:
undefined.foo //exception, obviously
Spread syntax copies properties to a new object, so you end up with an object no matter what:
typeof {...undefined} === 'object'
So by spreading obj
you avoid operating directly on a potentially undefined
variable.
Some more examples:
({...undefined}).foo // === undefined, no exception thrown
({...{'foo': 'bar'}}).foo // === 'bar'
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743666601a4487075.html
评论列表(0条)