when().then() pattern in the following situation:

$.when(setServerValue("true"))
    .then(function(){
        console.log('done setting new value');
        performSomeOperation();
    })
    .fail(function(){
        alert('server value not set!');
    });

var setServerValue = function(newValue){
    return $.post('http://myURL',{key:newValue});
};

The problem here is that the 'then' or 'fail' operations are never called using a $.post() operation. I've successfully used this approach with $.get() operations, and if I understand the API docs correctly (apparently not), this should also work for $.post operations.

Can anybody help me with this? Thanks!

link|improve this question

1  
I don't think setServerValue() is in scope at the time $.when() is called (as hoisting does not apply to function expressions IIRC). Can you try defining it as function setServerValue(newValue) { ... } and see if its fixes your problem? – Frédéric Hamidi Sep 2 '11 at 14:41
feedback

1 Answer

up vote 2 down vote accepted

The problem is that setServerValue is not defined as function when you call it. Move your definition of setServerValue above the $.when call.

Working example: http://jsfiddle.net/petersendidit/JHkKG/

link|improve this answer
Wow such a simple, but effective sollution. When i get the chance i'll try it with my development code. At least the jsfiddle works, so that means i understood the api docs correctly.. :-) – Bjarne77 Sep 2 '11 at 19:57
feedback

Your Answer

 
or
required, but never shown

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