我正在开发MVC 5应用程序。我需要上传多个文件。
我所知道的是HttpPostedFile和HttpPostedFileBase类可以得到一个文件。但我的情况是,我需要同时上传多个文件。
我的问题是,
1) 由于不支持使用ajax上传多个文件,我是否需要编写值提供程序来执行接受多个文件的操作?
2) 如果我实现了自定义值提供程序,那么在操作方法中的参数应该使用什么(应该是IEnumerable<HttpPostedFileBase> f
吗)?因为我做到了,我得到了null
。
更新
这是我从View 打来的Ajax电话
var files = e.target.files;
if (window.FormData !== undefined) {
var fd = new FormData();
for (x = 0; x < files.length; x++) {
fd.append("file" + x, files[x]);
}
// fd.append("fawad", "ali");
$.ajax({
type: "POST",
url: "/FileOp/FileUpload",
contentType: false,
processData: false,
data: fd,
sucess: function (result) {
// alert();
},
error: function (xhr, status, p3, p4) {
alert(xhr.responseText);
}
});
这是我的操作方法(HttpPost)
[HttpPost]
public object FileUpload(IEnumerable<HttpPostedFileBase> file)
感谢
添加名为file0
、file1
、file2
等的文件,这些文件不会绑定到名为file
的参数。
将脚本中的代码更改为
for (x = 0; x < files.length; x++) {
fd.append("file", files[x]); // modify
}
或者,您可以使用
fd.append("[" + x + "].file", files[x]);