当我在 1.2 mb 上发布 base64 字符串时 apache tomcat 给出错误:“客户端发送的请求在语法上不正确” 当它低于 1.2 mb 时它工作正常,我在服务器端接收数据。
是否有尺寸限制,我将如何解决这个问题?任何帮助将不胜感激。
非常感谢 :)
$.ajax({ type: 'POST',
url: 'http://localhost/testServer/image',
data: {imageData : result} ,
async: true,
success: function(data) {
},
error: function (xhr, textStatus, errorThrown) {
alert(xhr.responseText);
}
});