繁体   English   中英

ASP.NET Core Web Application using .NET 5.0: IFormFile always null when passing from view to controller

[英]ASP.NET Core Web Application using .NET 5.0: IFormFile always null when passing from view to controller

我正在尝试允许用户上传 pdf 文件。 我没有收到任何错误,但 IFormFile 'PostedFile' 在 controller 中始终是 null。

创建视图:

 <div class="form-group">
      <label asp-for="PostedFile" class="control-label"></label>
      <div class="col-md-10">
           <input type="file" asp-for="PostedFile" />
           <span asp-validation-for="PostedFile" class="text-danger"></span>
      </div>

Controller,创建方法:

[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Create([Bind("ID,Name,Phone1,Phone2,District_Division,OrgNumber,DateOfTest,DateOfExposure,NumberOfExposed,Notes,PathToFile")] Case_Log case_Log, IFormFile PostedFile)
{
    string path = "Case_Log_Docs/";
    if (!Directory.Exists(path))
    {
        Directory.CreateDirectory(path);
        System.Diagnostics.Debug.WriteLine("Created the folder.");
    }

    if (PostedFile != null)
    {
        string fileName = Path.GetFileName(PostedFile.FileName);
        System.Diagnostics.Debug.WriteLine(fileName);
        PostedFile.CopyTo(new FileStream(path, FileMode.Create));
        ViewBag.Message += string.Format("<b>{0}</b> uploaded.<br />", fileName);
    }
    else
    {
        System.Diagnostics.Debug.WriteLine("Posted file was null.");
    }

    if (ModelState.IsValid)
    {
        _context.Add(case_Log);
        await _context.SaveChangesAsync();
        return RedirectToAction(nameof(Index));
    }
    return View(case_Log);
}

请注意:我(我想我)不想使用列表,因为我不希望用户一次能够上传超过 1 个文档,因为这些文档具有对应的数据库条目,并且具有 1 对 1 的关系。

我有几个问题。

1.) 有什么问题? 为什么 IFormFile 总是 null? 2.) 为什么人们似乎总是推荐 List 而不是 IFormFile?

将变量的 rest 传递给 controller 可以正常工作:

<form asp-action="Create">
    <div asp-validation-summary="ModelOnly" class="text-danger"> </div>
    <div class="form-group">
        <label asp-for="Name" class="control-label"></label>
        <input asp-for="Name" class="form-control" />
        <span asp-validation-for="Name" class="text-danger"></span>
    </div>
    <div class="form-group">
        <label asp-for="Phone1" class="control-label"></label>
        <input asp-for="Phone1" class="form-control" />
        <span asp-validation-for="Phone1" class="text-danger"></span>
    </div>

但是文件上传 div 仍然在指向 Create 方法的表单内。 视图元素有问题吗? 如果是这样,我将如何更改它以纠正问题?

我尝试按照此示例进行操作,没有错误,但也没有结果: https://www.aspsnippets.com/Articles/ASPNet-Core-IFormFile-always-returns-NULL.aspx

您需要使用enctype=multipart/form-data来允许将整个文件包含在数据中。如下所示。

<form asp-action="xxx" enctype="multipart/form-data">
 //...
    <input type="file" name="PostedFile" />
    <input type="submit" value="click"/>
</form>

行动:

[HttpPost]
public IActionResult Demo(IFormFile PostedFile)
 {
    //...
 }

结果: 在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM