After an AJAX request, sometimes my application may return an empty object, like:
var a = ({});
How can I check if that's the case?
|
|
After an AJAX request, sometimes my application may return an empty object, like:
How can I check if that's the case? |
||
|
|
|
There's no easy way to do this. You'll have to loop over the properties explicitly:
|
||
|
|
|
1) Just a workaround. Can your server generate some special property in case of no data? For example:
Then you can easily check it in your AJAX callback code. 2) Another way to check it:
EDIT: If you use any JSON library (f.e. JSON.js) then you may try JSON.encode() function and test the result against empty value string. |
||||||||||
|
|
|
function isEmpty(obj) { for(var i in obj) { return false; } return true; } |
||
|