ie7 JSONP src 2020 characters limit
It seems I've hit a limit of 2020 characters when trying to send some informat开发者_C百科ion through JSONP on ie7.
If the src of the script is bigger than 2020 characters, ie7 just ignores the script. Is there some way around this?
(I know that a solution would be to split the data and let the server concatenate the request)
Maximum URL length is 2,083 characters in Internet Explorer
Is there any way are this?
Use another browser? :) Only way is find a way to reduce the amount of data you are sending. Use a different format, try some sort of zipping algorithm, or do some strange multiple requests that can only lead to more complexity to your app.
Use the POST method, this one shouldn't have any problem with the length of your data.
精彩评论