I want to have my own initialization function, and I want it exit only after onload event, what can I do for it?

var qqq=0;
function init(){
    var requestClient= Ti.Network.createHTTPClient();
    requestClient.open('GET','https://mysite.com/api/123/id/5/friends');
        requestClient.onload = function() {
            alert('loaded');
        };
    requestClient.send();
};
init();
alert(qqq);
link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Well, you can do that, by making the request synchronous instead of asynchronous. This has unpleasant side-effects on the user's browsing experience, tending to lock things up during the request, but if you set open's third argument to false, it will make it synchronous instead of asynchronous:

var qqq=0;
function init(){
    var requestClient= Ti.Network.createHTTPClient();
    requestClient.open('GET','https://mysite.com/api/123/id/5/friends', false);
                                                           // Here------^
        requestClient.onload = function() {
            alert('loaded');
        };
    requestClient.send();
};
init();
alert(qqq);

A synchronous request will bring the JavaScript execution on the page (at least, and in many browsers rather more than just the JavaScript) to a screeching halt until the network operation completes.

But the usual practice is to have your init accept a callback you call from within the onload handler, as this makes for a much better UX:

var qqq=0;
function init(callback){  // <== Accept a callback
    var requestClient= Ti.Network.createHTTPClient();
    requestClient.open('GET','https://mysite.com/api/123/id/5/friends');
        requestClient.onload = function() {
            alert('loaded');
            callback();   // <== Call the callback
        };
    requestClient.send();
};
init(function() {         // <== Pass the callback into `init`
    alert(qqq);
});

Effective web programming is about embracing the event-driven nature of it. I'd strongly recommend the second example.

link|improve this answer
It's cool! Thanks, man! – user837488 Jul 10 '11 at 9:47
@user: No worries, glad that helped. Since you're new here, I'll mention that if this answered your question to your satisfaction, you should click the empty checkmark to the left of it to mark it as the "accepted" answer. More in the FAQ and this page on how accepting answers works. And welcome to Stack Overflow! (I didn't realize at first you were a new user.) – T.J. Crowder Jul 10 '11 at 9:52
FYI: Appcelerator's implementation of the httpClient does not support the third argument – Aaron Saunders Jul 10 '11 at 15:51
@Aaron: Really? Doesn't say that in the docs. But I have to admit I completely missed that this was using Titanium. :-) All the more reason to go with the "But the usual practice is..." option! – T.J. Crowder Jul 10 '11 at 16:11
feedback

Your Answer

 
or
required, but never shown

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