JSON response incomplete
Hi,
I use this code upon succesful query service execution to pass JSON response to local storage:
var JSONresponse = JSON.stringify(data);
localStorage.setItem("_Arttable_json_response", JSONresponse);
It worked fine so far, but today I am getting incomplete data after query execution. When I look inside my variable '_Arttable_json_response' at console local storage resources, I can see the data string ending like this:
-11-15 19:50:58.566"},{"_id":"52867b22e4
so it is definitely incorrect, and I can see the large part of response is missing.
No errors thrown on the console, however when I do:
console.log(JSONResponse) then I can see the whole dataset returned.
Browser cache flushed.
Do you have any ideas what might cause this problem? I haven't modified my data in database.