Is there any way I can check the response size? Data property is a byte array which I am using to display an image. If the size is greater than 10 MB I need to show a popup.
{
"Name": "sharon",
"Date": "07\/14\/2004",
"Data": "JVBERi0xLjINCg0KNC",
"DocumentId":1540,
}
Also how can I check the type of my response, whether it's blob or something? Can I check the size of the blob I am getting? Maybe something like this:
var data = JSON.parse(this.responseData);
.lengthattribute of theDataproperty. If it's greater than 1024^2 then show the popup. – miku Jan 1 at 3:04this.responseData.data.length– miku Jan 1 at 3:11.lengthdifferently for new lines. The "incoming data" on that server is not necessarily on that server. To be sure, run console.log() to show the value during your tests. – arttronics Jan 1 at 3:14