After an AJAX request, sometimes my application may return an empty object, like:
var a = ({});
How can I check whether that's the case?
|
After an AJAX request, sometimes my application may return an empty object, like:
How can I check whether that's the case? | ||||
feedback
|
|
For those of you who have the same problem but uses jQuery, you can use jQuery.isEmptyObject. | |||||||||
feedback
|
|
There's no easy way to do this. You'll have to loop over the properties explicitly:
| |||||||||||||||||
feedback
|
| |||||||
feedback
|
|
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. | |||||||||||||||||
feedback
|
|
You can use Underscore.js.
| |||
|
feedback
|
|
In addition to Thevs answer:
it's jquery + jquery.json | |||
|
feedback
|
|
jQuery have special function
Read more on http://api.jquery.com/jQuery.isEmptyObject/ | |||
|
feedback
|
|
My take:
Just, I don't think all browsers implement | |||
|
feedback
|
|
Caveat! Beware of JSON's limitiations.
displays
Beware!! obj is NOT empty!
obj = { f:function(){} }
JSON.stringify( obj )
returns
{}
| |||
|
feedback
|
|
Go with the jQuery.isEmptyObject. But if you don't have jQuery and want a quick check I found == '' works for checking empty objects as well.
| |||
|
feedback
|
| |||||
feedback
|
|
I have an easy(but not generic) solution for this scenario : if you know a specific property name for your object , then you can easily check if that property exists. This way you would know if that object is empty or not , and you wouldn't need to traverse all the properties or use a library. Let me give an example : there is an object that , if its not empty, must have a property named "myProperty". Then you can check it like :
this is not a generic solution but it's been doing all i need actually, as most times i know what to expect in an object that i'm performing an empty check. | |||
|
feedback
|
|
Assume you get the result as:
| |||
|
feedback
|
|
A version adding isEmpty() to the object prototype:
| |||||
feedback
|
|
There is a simple way if you are on a newer browser.
| |||
|
feedback
|
|
you must be binding this json to some dom element inspite of checking json best way is to make the the binding function handle such data | |||
|
feedback
|
|
it's very simple if is json, i always contains '{}' so you should write : "data" is string Json as : {'name':'phucvh', 'age':'21'}
| ||||
|
feedback
|
|
How about:
This works for me. | |||||
feedback
|