asp.net MVC中的jQuery Ajax上传文件


77

我认为有一个文件

<form id="upload" enctype="multipart/form-data">
   <input type="file" name="fileUpload" id="fileUpload" size="23" />
</form>

和一个ajax请求

$.ajax({
    url: '<%=Url.Action("JsonSave","Survey")  %>',
    dataType: 'json',
    processData: false,
    contentType: "multipart/mixed",
    data: {
        Id: selectedRow.Id,
        Value: 'some date was added by the user here :))'
    },
    cache: false,
    success: function (data) {}
});

但是Request.Files中没有文件。Ajax请求出了什么问题?


json无法上传这样的文件。最好使用浏览器的默认上传行为。
霍根2010年

Answers:


135

在ASP.Net MVC中使用AJAX上传文件

自HTML5以来情况发生了变化

的JavaScript

document.getElementById('uploader').onsubmit = function () {
    var formdata = new FormData(); //FormData object
    var fileInput = document.getElementById('fileInput');
    //Iterating through each files selected in fileInput
    for (i = 0; i < fileInput.files.length; i++) {
        //Appending each file to FormData object
        formdata.append(fileInput.files[i].name, fileInput.files[i]);
    }
    //Creating an XMLHttpRequest and sending
    var xhr = new XMLHttpRequest();
    xhr.open('POST', '/Home/Upload');
    xhr.send(formdata);
    xhr.onreadystatechange = function () {
        if (xhr.readyState == 4 && xhr.status == 200) {
            alert(xhr.responseText);
        }
    }
    return false;
}   

控制者

public JsonResult Upload()
{
    for (int i = 0; i < Request.Files.Count; i++)
    {
        HttpPostedFileBase file = Request.Files[i]; //Uploaded file
        //Use the following properties to get file's name, size and MIMEType
        int fileSize = file.ContentLength;
        string fileName = file.FileName;
        string mimeType = file.ContentType;
        System.IO.Stream fileContent = file.InputStream;
        //To save file, use SaveAs method
        file.SaveAs(Server.MapPath("~/")+ fileName ); //File will be saved in application root
    }
    return Json("Uploaded " + Request.Files.Count + " files");
}

编辑:HTML

<form id="uploader">
    <input id="fileInput" type="file" multiple>
    <input type="submit" value="Upload file" />
</form>

1
您可以为视图添加代码吗?HTML ..这个答案。
埃里克·比斯哈德

不错的博客Ajeesh!谢谢!
埃里克·比斯哈德

1
嗨,有没有办法将上传的文件绑定到模型中?
2014年

这在IE中不起作用。IE在file.FileName参数中传递用户的完整本地路径,因此您需要Path.GetFileName(file.FileName)才是安全的。否则,很棒的答案。很大的帮助,谢谢。
Lee Richardson 2014年

这个答案中的链接(和评论中的另一个)断开了
DLeh 2014年

41

现在可以通过将FormData对象传递到请求的data属性来上传AJAX文件$.ajax

正如OP特别要求的jQuery实现一样,您可以执行以下操作:

<form id="upload" enctype="multipart/form-data" action="@Url.Action("JsonSave", "Survey")" method="POST">
    <input type="file" name="fileUpload" id="fileUpload" size="23" /><br />
    <button>Upload!</button>
</form>
$('#upload').submit(function(e) {
    e.preventDefault(); // stop the standard form submission

    $.ajax({
        url: this.action,
        type: this.method,
        data: new FormData(this),
        cache: false,
        contentType: false,
        processData: false,
        success: function (data) {
            console.log(data.UploadedFileCount + ' file(s) uploaded successfully');
        },
        error: function(xhr, error, status) {
            console.log(error, status);
        }
    });
});
public JsonResult Survey()
{
    for (int i = 0; i < Request.Files.Count; i++)
    {
        var file = Request.Files[i];
        // save file as required here...
    }
    return Json(new { UploadedFileCount = Request.Files.Count });
}

有关MDNFormData的更多信息


7
美丽。谢谢!我在几个问题上找到的最佳答案。
杰西

1
来到这里专门寻找jQuery解决方案,并且看到标记为Answered的响应仅使用原始JavaScript感到有些失望。您的解决方案很棒,对我来说效果很好。非常感谢:)
约书亚K

请注意,如果您不选择文件,则似乎仍会在数组中获得单个文件,并且ContentLength = 0
Savage

@Savage:在2020年/ chrome / asp网络核心mvc中进行了测试:当您不选择任何内容时,文件为null。无论如何,答案是与剃刀和MVC控制器的真正干净的文件上传集成
christophe.chapron

4

您无法通过Ajax上传文件,需要使用iFrame或其他技巧来进行完整的回发。这主要是出于安全考虑。

这是一个不错的文章,其中包括使用Stef Sanderson的SWFUpload和ASP.Net MVC的示例项目。这是我读到的第一件事,它可以使它与Asp.Net MVC一起正常工作(当时我也是MVC的新手),希望对您有所帮助。


13
这不是真的; 您可以通过ajax发送表单数据。
Josh M.

@JoshM。是的,但是如果没有某种外部解决方案,您将无法通过AJAX发送文件。
Kehlan Krumme,2013年

8
@kehrk:使用HTML5中新的FormData和File对象,您确实可以通过AJAX上传文件。试试这个:developer.mozilla.org/en-US/docs/…
jrista

1

我在vuejs版本上有一个这样的样本:v2.5.2

<form action="url" method="post" enctype="multipart/form-data">
    <div class="col-md-6">
        <input type="file" class="image_0" name="FilesFront" ref="FilesFront" />
    </div>
    <div class="col-md-6">
        <input type="file" class="image_1" name="FilesBack" ref="FilesBack" />
    </div>
</form>
<script>
Vue.component('v-bl-document', {
    template: '#document-item-template',
    props: ['doc'],
    data: function () {
        return {
            document: this.doc
        };
    },
    methods: {
        submit: function () {
            event.preventDefault();

            var data = new FormData();
            var _doc = this.document;
            Object.keys(_doc).forEach(function (key) {
                data.append(key, _doc[key]);
            });
            var _refs = this.$refs;
            Object.keys(_refs).forEach(function (key) {
                data.append(key, _refs[key].files[0]);
            });

            debugger;
            $.ajax({
                type: "POST",
                data: data,
                url: url,
                cache: false,
                contentType: false,
                processData: false,
                success: function (result) {
                    //do something
                },

            });
        }
    }
});
</script>

流血的地狱,我花了2天的大部分时间来解决这个问题,这是一个解决方案。是否可以对表格进行模型绑定?
Marqueone

0

如果使用ajax发布表单,则无法使用$ .ajax方法发送图像,则必须使用经典的xmlHttpobject方法保存图像,其他替代方法是使用提交类型而不是按钮

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.