一起發送額外的數據,我將文件上傳到使用jQuery服務器:的jQuery/AJAX - 文件上傳
$.ajax({
url : 'http://www.example.com',
dataType : 'json',
cache : false,
contentType : false,
processData : false,
data : formData, // formData is $('#file').prop('files')[0];
type : 'post',
success : function(response) {something}
});
我想與文件一起發送額外的參數。可能嗎?如果是 - 如何?
謝謝!