邮件上的空文件请求有效负载和表单数据的空文件名

时间:2014-12-01 20:18:09

标签: ajax json backbone.js multipartform-data payload

我有一个多部分表单,其中请求的第一部分是表单数据,第二部分是文件。请求的第一部分缺少文件名,第二部分有一个空的有效负载,二进制内容应显示。

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
});

1 个答案:

答案 0 :(得分:0)

尝试:

message.save(null,{
    cache: false,
    contentType: false,
    processData: false,
    data: data
});

同样here是关于骨干文件上传的问题。和another解决方案。