I'd want to send a FormData
by using jQuery AJAX, like:
var uploadFormData = new FormData();
uploadFormData.append("name","value");
$.ajax({
url : "(URL_target)",
type : "POST",
data : uploadFormData,
cache : false,
contentType : false,
processData : false,
success : function(r) {
alert("Success!");
}
});
But I also want to send a binary data by using jQuery AJAX, like:
var data = (...);
$.ajax({
url: "(URL_target)",
type: "POST",
data : data,
cache : false,
contentType: "application/octet-stream",
processData: false,
success : function(r) {
alert("Success!");
}
});
How can I bine them into one data and send it out?
I'd want to send a FormData
by using jQuery AJAX, like:
var uploadFormData = new FormData();
uploadFormData.append("name","value");
$.ajax({
url : "(URL_target)",
type : "POST",
data : uploadFormData,
cache : false,
contentType : false,
processData : false,
success : function(r) {
alert("Success!");
}
});
But I also want to send a binary data by using jQuery AJAX, like:
var data = (...);
$.ajax({
url: "(URL_target)",
type: "POST",
data : data,
cache : false,
contentType: "application/octet-stream",
processData: false,
success : function(r) {
alert("Success!");
}
});
How can I bine them into one data and send it out?
Share Improve this question edited Aug 30, 2016 at 4:30 Banana Code asked Aug 30, 2016 at 4:13 Banana CodeBanana Code 8293 gold badges13 silver badges29 bronze badges1 Answer
Reset to default 12You can append binary data to FormData
object as a Blob
, File
, ArrayBuffer
object, or data URI
var uploadFormData = new FormData();
var data = (...);
uploadFormData.append("name","value");
uploadFormData.append("data", new Blob([data], {type:"application/octet-stream"}));
$.ajax({
url : "(URL_target)",
type : "POST",
data : uploadFormData,
cache : false,
contentType : false,
processData : false,
success : function(r) {
alert("Success!");
}
});