我有一个多部分表单,其中请求的第一部分是表单数据,第二部分是文件。请求的第一部分缺少文件名,第二部分有一个空的有效负载,二进制内容应显示。
A sample payload is as follows:
------WebKitFormBoundaryiCmJmbQ7e518oDt9
Content-Disposition: form-data; name="message"
{"category":"OTHER","subject":"Test","body":"testttt"}
------WebKitFormBoundaryiCmJmbQ7e518oDt9
Content-Disposition: form-data; name="test.pdf"; filename="test.pdf"
Content-Type: application/pdf
------WebKitFormBoundaryiCmJmbQ7e518oDt9--
第一个内容处置缺少filename =" message"。我尝试将其更改为Blob,但有效负载为空。无论我尝试什么,我都无法在有效载荷中显示该文件。它应该显示类似�PDF
的内容我的ajax请求:
var data = new FormData();
data.append('message', JSON.stringify(message.attributes));
data.append(document.getElementById('fileInput').files[0].name,document.getElementById('fileInput').files[0]);
message.save({},{
cache: false,
contentType: false,
processData: false,
data: data
});