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? |
||||
|
|
For those of you who have the same problem but uses jQuery, you can use jQuery.isEmptyObject. |
|||||||||||||||||||
|
|
There's no easy way to do this. You'll have to loop over the properties explicitly:
If ECMAScript 5 support is available, you can use
|
|||||||||||||||||||
|
|
|||||||||||||||||||
|
|
You can use Underscore.js.
|
|||
|
|
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. |
|||||||||||||||||
|
|
jQuery have special function
Read more on http://api.jquery.com/jQuery.isEmptyObject/ |
|||
|
|
|
I am using this.
Eg:
Update OR you can use the jQuery implementation of isEmptyObject
|
||||
|
|
|
Old question, but just had the issue. Including JQuery is not really a good idea if your only purpose is to check if the object is not empty. Instead, just deep into JQuery's code, and you will get the answer:
|
|||
|
|
|
My take:
Just, I don't think all browsers implement |
|||
|
|
|
There is a simple way if you are on a newer browser.
|
|||
|
|
|
In addition to Thevs answer:
it's jquery + jquery.json |
|||
|
|
|||||
|
|
How about using JSON.stringify? It is almost available in all modern browsers.
|
|||
|
|
|
Caveat! Beware of JSON's limitiations.
displays
Beware!! obj is NOT empty!
obj = { f:function(){} }
JSON.stringify( obj )
returns
{}
|
|||
|
|
|
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.
|
|||||
|
|
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. |
|||
|
|
|
Sugar.JS provides extended objects for this purpose. The code is clean and simple: Make an extended object:
Check it's size:
|
|||
|
|
|
A version adding isEmpty() to the object prototype:
|
|||||||
|