2

我有一个多重上传表单,我想在启动上传时检查是否有任何文件。这是我的代码。

看法 :

@using (Html.BeginForm("Upload", "Home", FormMethod.Post, 
                       new { enctype = "multipart/form-data"}))
{
    <input name="files" type="file" multiple="multiple" />
    <input type="submit" value="Upload" />
}

控制器 :

[HttpPost]
public ActionResult Upload(IEnumerable<HttpPostedFileBase> files)
{
    if (files.Count() > 0) Console.WriteLine(files.Count()); // display 1
    if(files.Any()) Console.WriteLine(files.Any()); // display true
    if (files.First() == null) Console.WriteLine("first null"); // display "first null"

    return View();
}

为什么我的程序在提交空表单时会显示这样的结果?我可能会检查我的领域的 JS,但我想了解我的IEnumerable<HttpPostedFileBase>. 谢谢你。

4

1 回答 1

2

虽然我参加聚会有点晚了,但仍然。我有同样的问题。在 asp.net 上找到一篇文章,他们说这是设计使然。 http://aspnetwebstack.codeplex.com/workitem/188

这是设计使然,因为请求包含具有 filename="" 的段。如果您不想创建文件,请从请求中删除该段。我通过以下方式修复了它。

 if (RelatedFiles.Any())
            {
                foreach (var file in RelatedFiles)
                {
                    if (file != null) // here is just check for a null value.
                    {


                        byte[] uploadedFile = new byte[file.InputStream.Length];
                        file.InputStream.Read(uploadedFile, 0, file.ContentLength);
                        FileInfo fi = new FileInfo(file.FileName);

                        var upload = new UploadedFile
                        {
                            ContentType = file.ContentType,
                            Content = uploadedFile,
                            FileName = fi.Name,
                            ContentExtension = fi.Extension,
                        };

                        newIssuePaper.RelatedDocuments.Add(upload);
                    }
                }
于 2016-03-18T10:24:06.820 回答