Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So, I am learning Javascript while playing white Google Calendar APIs and I just can't figure how this piece of code is working this way:

var entriesResult = [];
var data = new Date(2010,3,22,17,0,0);
var callback = function(result) {       
    var entries = result.feed.getEntries();    
    if (entries.length != 0) {
        entriesResult = eventsManager(entries, 0, data);
        window.alert("inner entriesResult " + entriesResult.length);
    }
}
this.service.getEventsFeed(this.query, callback, handleGDError);
window.alert("outer entriesResult " + entriesResult.length);

eventsManager() is a function that returns an array of Objects.

getEventsFeed() it's an API function: it queries the service and pass a "feed root" (a feed with selected items) to the callback function.

Why the first alert (inner..) outputs a valid entriesResult.length while the second one (outer..) always outputs a 0?

I tought javascript arrays are always passed by reference, what's wrong whit my code? Thank you :)

share|improve this question
2  
Which alert appears first? – SLaks Mar 21 '10 at 16:07
The second one. – Gianluca Mar 21 '10 at 16:08
There's your problem. See my answer. – SLaks Mar 21 '10 at 16:10

2 Answers

up vote 3 down vote accepted

The getEventsFeed function makes an asynchronous AJAX call and calls callback when the server replies. In other words, the callback function is run some time after the rest of the code.

Therefore, the outer alert is executed before the callback, when the array is still empty.

EDIT

To return a value from an AJAX call, you need to accept a callback as a parameter, then call the callback once you have a value to return.

For example:

function myFunction(someParam, callback) {
    //Do things...
    var eventsFeedCallback = function() { 
        //Do more things, and figure out what to return
        callback(someValue);  //Call the user's original callback to give back a value
    };
    this.service.getEventsFeed(this.query, eventsFeedCallback , handleGDError);  
    //Do more things...
}

You would call this function the same way you call getEventsFeed.
For example:

myFunction("Parameter!", function(value) {
    //This is the callback, and will be called when the AJAX call finishes
    //Do things with value
});
share|improve this answer
I see. How can i resolve? Because i need to return entriesResult. – Gianluca Mar 21 '10 at 16:11
You need to make your function take a callback instead of returning a value, just like getEventsFeed. This is a fundamental limitation of AJAX. – SLaks Mar 21 '10 at 16:14
Can you elaborate please? I am really a newbie with js/ajax Thank you! – Gianluca Mar 21 '10 at 16:26

The line:

 window.alert("outer entriesResult " + entriesResult.length); 

is executed immediately after you start the async operation (before it completes).

the line in the callback function is executed later, after the async operation is complete.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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