如何通过ajax将存储在jquery变量中的base64图像数据作为参数发送到php文件?
我有以下代码用于小字符串但是对于大字符串获取414错误“414 Request-URI Too Large”。
jQuery.ajax({
type:'POST',
//url:'../function.php/?imagestr='+string,
url:'../function.php',
data: "{imagestr:'" + string + "'}",
contentType: "application/json",
dataType: "json",
//dataType: 'text',
success:function(data){
alert(data);
}
});