我有像这样的jquery请求
function sendData() {
var formData = new FormData($("#myform")[0]);
$.ajax({
type: 'POST',
url: "/process",
data: formData,
dataType: 'json',
contentType:false,
cache:false,
processData:false,
timeout: 30 * 1000,
beforeSend: function( xhr ) {
},
success: function(jsonData,status,xhr) {
},
error: function(data,status,xhr) {
}
});
}
适用于上传图像并将其发送到服务器。但它不处理二进制返回类型(用于接收二进制格式的图像)。
然后我在这里有其他代码
// http://www.henryalgus.com/reading-binary-files-using-jquery-ajax/
function fetchBlob(uri, callback) {
var xhr = new XMLHttpRequest();
xhr.open('GET', uri, true);
xhr.responseType = 'arraybuffer';
xhr.onload = function(e) {
if (this.status == 200) {
var blob = this.response;
if (callback) {
callback(blob);
}
}
};
xhr.send();
};
处理我需要的规范。但问题是,我如何修改这个工作代码,以便我可以附加一个FormData()对象与图像?
由于
答案 0 :(得分:1)
您可以按照以下方式附加:
function fetchBlob(uri, callback) {
var formData = new FormData($("#myform")[0]);
var xhr = new XMLHttpRequest();
xhr.open('GET', uri, true);
xhr.responseType = 'arraybuffer';
xhr.onload = function(e) {
if (this.status == 200) {
var blob = this.response;
if (callback) {
callback(blob);
}
}
};
xhr.send(formData); //attach it here.
}
<强> SOURCE 强>
答案 1 :(得分:0)
修改代码需要它将请求类型更改为POST并将FormData对象传递给send方法
// http://www.henryalgus.com/reading-binary-files-using-jquery-ajax/
function fetchBlob(uri, callback) {
var xhr = new XMLHttpRequest();
xhr.open('POST', uri, true);
xhr.responseType = 'arraybuffer';
var formData = new FormData($("#myform")[0]);
xhr.onload = function(e) {
if (this.status == 200) {
var buffer = this.response;
if (callback) {
callback(buffer);
}
}
};
xhr.send(formData);
}