I try to pass an array to json. However, when the array has more than 96 elements, it automatically remove the rest elements. no error message. I don't know why?
For examples, if I define pids = new Array {'n0','01','n2',......'n95','n96'}, n96 is ignored.
Here is my code
var pids = [];
$('#moduleForm input[name="module[properties][]"]').each(function(){
if($(this).attr('checked') == true) pids.push($(this).val());
});
var formData = {
'module[properties][]':pids
};
Till the above step, module[properties] has all values. n0 to n96.
var options = {
url:'Module',
data:formData,
dataType:'json',
timeout:60000,
success:saveCallBack,
error:ajaxError
};
$.ajax(options);
Is there a config setting somewhere I need to adjust? I use php5.
Here is the data that is passed to json
status 0
data Object { moduleId="1009", name="adsman", shortName="adsman", more...}
moduleId "1009"
name "adsman"
shortName "adsman"
isInternal "0"
status "1"
properties ["0", "1", "2", 93 more...] // actually, it suppose to have 99 elements.
error null
in php.ini post_max_size = 9M
Thanks.
type: 'post'in the options. – meze Oct 10 '11 at 16:18