Reputation: 103
As we are known, for XMLHttpRequest, method 'GET' has a limitation of URL length in characters, and 'POST' does not.
So my question is if there is a limitation of responseText
or responseXML
?_? i.e. the data which JS get from the Ajax, not the data we post or length of URL.
Upvotes: 0
Views: 1020
Reputation: 129
See this answer: Javascript maximum size for types?
Unless the browser specified otherwise, variable sizes are not subject to a restriction. As for Ajax: There's no limit, unless defined server-side
Upvotes: 1