使用IE并发布到AWS时收到以下错误。
这是我的ajax请求
$.ajax({
type: 'POST',
url: postingurl, //s3 bucket url
data: fd,
processData: false,
// contentType: false, // This not worked
// contentType: "multipart/form-data", // This also not worked
error: function(xhr, ajaxOptions, thrownError) {
alert(xhr.responseText); // error is the title of this question
}
}).done(function(data) {
// Success
});
尝试删除内容类型。这在Mozilla和Chrome中运行良好。
不在IE中工作。我正在使用IE 10.任何指针?