我正在使用dojo xhr post(ajax call)方法将数据从UI发送到服务器。我将内容参数中的数据作为名称值对传递,如下所示,
dojo.xhrPost({
url : "actionName.action",
handleAs : "json",
content : {
"selectedEntityJson" : JSON.stringify(selectedEntityJson),
"templateTreeJson" : templateTreeJson
},
load : function(response) {
}
});
这里,“templateTreeJson”仅在内容大小为mininum时才会进入服务器。如果在“templateTreeJson”中传递大数据,则不会传递数据。它也没有出现在萤火虫中。 dojo ajax调用有任何限制吗?我怎样才能传递大数据?