I spent all day reading about jquery deferred, promise, etc.
My problem is really simple.
I have one function that call 4 other functions, and some of them have async calls to fetch data from the server.
function A() {
async call
console.log("1");
}
function B() {
normal code
console.log("2");
}
function C() {
async call
console.log("3");
}
function xyz() {
A();
B();
C();
print str;
}
the expected result is 123str.
instead i get 312 or 213. Basically the 3 functions don't wait the end of the other one. I have tried with .done with $.when(a).then(b), with promise.
But nothing work. Can someone give me a barebone example code that works?
EDIT:
function setId() {
var doc = sessionStorage.getItem("urlDoc");
var user = sessionStorage.getItem("LoggedUser");
var string = "urlDoc=" + doc + "&user=" + user;
if (sessionStorage.getItem("countId") === null) {
$.ajax({
type: 'POST',
url: 'php/findTemporaryId.php',
data: string,
success: function (data) {
sessionStorage.setItem("countId", data);
countId = sessionStorage.getItem("countId");
id = countId;
console.log("1");
},
error: function () {
alert("Server Error");
}
});
} else {
sessionStorage.setItem("countId", parseInt(sessionStorage.getItem("countId")) + 1);
countId = sessionStorage.getItem("countId");
id = countId;
console.log("1");
}
then
function setAuthor() {
author = sessionStorage.getItem('LoggedUser');
console.log("2");
}
then
function getData() {
$.ajax({
type: 'POST',
url: 'php/date.php',
success: function (data) {
date = data;
console.log("3");
},
error: function () {
alert("Error");
}
});
}
this is how i call them
function saveSelectionFragment() {
setId();
setAuthor();
getData();
}
here the firebug console. https://i.stack.imgur.com/lLnGH.jpg
Since you didn't post anything you said you tried with Promises, here's how it works..