i have a client gets JSON request that gets certain data from a server, as soon as something come in the server (server has a time interval of 10secs listening incoming data) the client gets the data.
Now the problem is all the data the client got are staying in a que, they come out one by one after every time interval, so every time interval shows only one data.
I want every data came from the server should be shown independent on the time interval. Any help is appreciated!
function getRequest(i) {
$.getJSON(
'/nextdocument',
function(data) {
console.log(data.documentID + data.description +
data.price + data.instanceId + data.errorMessage);
}
);
setTimeout(function() {
getRequest(i);
}, 11000);
}
Thanks for advice, i have solved it by following code:
function getRequest() {
$.ajax({
url: '/nextdocument',
type: 'GET',
async: true,
cache: false,
timeout: 11000,
success: function(data) {
console.log(data.documentID + data.description +
data.price + data.instanceId);
setTimeout(
'getRequest()',
1000
);
data["ok"] = data.ok;
data["errorMessage"] = data.errorMessage;
$.ajax(
{
url: "/customerdone",
data: JSON.stringify(data),
processData: false,
type: 'POST',
contentType: 'application/json'
}
)
//no document if no read in
if (data.ok == "false") {
console.log(data.errorMessage);
}
}
})
}
