I'd like to do something like this:

var res = myAjax.post();

myAjax is basically my own ajax wrapper (asynchroneous). I don't necessary need the chaining, but i'd like to be able to do the call like shown above. I'd like a callback to be handled by the object itself. I've read about asynchroneous method queues, but, honestly, couldn't fully understand it. I know i could use a synchroneous ajax call, but it should be possible to do it asynchroneously as well if i understand it correctly. Any help is very appreciated. Thank you.

link|improve this question

63% accept rate
1  
Your question doesn't make a lot of sense. You're describing a synchronous arrangement, but you say you want the call to be asynchronous. It can only be one or the other. – Pointy Aug 11 '10 at 12:20
"it should be possible to do it asynchroneously as well if i understand it correctly" --> You don't. – Tomalak Aug 11 '10 at 12:23
JQuery does this so it should be possible. Please read this if you think it's impossible: dustindiaz.com/async-method-queues The problem with this article is that i don't fully understand it... – Marius Aug 11 '10 at 12:26
@Marius: This article is about function chaining, not about value assignment. – Tomalak Aug 11 '10 at 12:28
Oh ... So they still run asynchroneously and return immediately? – Marius Aug 11 '10 at 12:29
show 6 more comments
feedback

1 Answer

I've done a demo here that might be something along the lines of what you mean...

In that demo, there are two types of objects: MyAjax which has the 'post' method as above, and a MyRes object with a getData method that will return null until the async call has successfully completed. After it has completed, it will return the data fetched from the ajax call.

In the demo, I have a function checking for the response every second, but the post method also handles a callback which allows you to be notified when the ajax call has completed successfully.

I don't know why you'd want to do it this way, but it is doable.

link|improve this answer
Thank you for the demo. There are probably a few ways of doing this, but i guess it's still not the same. To answer your question, i simply want to reduce the ammount of the code needed to write an ajax call - that's all. Lots of callbacks simply clutter the code so i thought i could clean it up a bit. – Marius Aug 11 '10 at 13:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.