Friday, May 10, 2024
183
rated 0 times [  190] [ 7]  / answers: 1 / hits: 110588  / 13 Years ago, sun, may 8, 2011, 12:00:00

I'm trying to pass a JavaScript variable to the server-side using jquery.ajax method.



I'm trying to create a json string, but when the length of variable reaches 10000, no more data is appended to the string.





var jsonObj = '{code:' + code + ',defaultfile:' + defaultfile + ',filename:' + currentFile + ',lstResDef:[';
$.each(keys, function(i, item) {
i = i + 1;
var value = $(#value + i).val();
var value = value.replace(//g, \);
jsonObj = jsonObj + '{';
jsonObj = jsonObj + 'Key:' + '' + Encoder.htmlEncode($(this).html()) + '' + , + 'Value' + ':' + '' + Encoder.htmlEncode(value) + '';
jsonObj = jsonObj + '},';
alert(jsonObj);
});

jsonObj = jsonObj + ']}';


Here, when the character length of the var jsonObj is 10000, the values following that is not appended.



It looks like there is some limit about that.


More From » variable-length

 Answers
64

There is no such limit on the string length. To be certain, I just tested to create a string containing 60 megabyte.



The problem is likely that you are sending the data in a GET request, so it's sent in the URL. Different browsers have different limits for the URL, where IE has the lowest limist of about 2 kB. To be safe, you should never send more data than about a kilobyte in a GET request.



To send that much data, you have to send it in a POST request instead. The browser has no hard limit on the size of a post, but the server has a limit on how large a request can be. IIS for example has a default limit of 4 MB, but it's possible to adjust the limit if you would ever need to send more data than that.



Also, you shouldn't use += to concatenate long strings. For each iteration there is more and more data to move, so it gets slower and slower the more items you have. Put the strings in an array and concatenate all the items at once:



var items = $.map(keys, function(item, i) {
var value = $(#value + (i+1)).val().replace(//g, \);
return
'{Key:' + '' + Encoder.htmlEncode($(this).html()) + '' + ,'+
' + 'Value' + ':' + '' + Encoder.htmlEncode(value) + '}';
});
var jsonObj =
'{code:' + code + ','+
'defaultfile:' + defaultfile + ','+
'filename:' + currentFile + ','+
'lstResDef:[' + items.join(',') + ']}';

[#92350] Friday, May 6, 2011, 13 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
kaitlynnb

Total Points: 402
Total Questions: 96
Total Answers: 109

Location: Trinidad and Tobago
Member since Fri, May 8, 2020
4 Years ago
kaitlynnb questions
;