文件上传仅适用于索引操作(ASP.Net MVC)

发布于 2024-11-07 05:51:24 字数 1250 浏览 0 评论 0原文

我有一个带有两个操作的简单控制器:

public class TestController : Controller
{
      // /Test
      public ActionResult Index()
      {
          return View();
      }
      [HttpPost]
      public ActionResult Index(HttpPostedFileBase file)
      {    
          bool b = file == null; //there will be false
          return RedirectToAction("Index");
      }

      // /Test/Wonder
      [HttpGet]
      public ActionResult Wonder()
      {
          return View();
      }        
      [HttpPost]
      public ActionResult Wonder(HttpPostedFile file)
      {
          bool b = file == null; //there will be TRUE!
          return RedirectToAction("Wonder");
      }
}

我对我的操作有类似的视图。 Index 操作:

<h2>Index</h2>
<form action="" method="post" enctype="multipart/form-data">  
  <input type="file" name="file" id="file" />
  <input type="submit" />
</form>

Wonder 操作:

<h2>It's wonder!</h2>
<form action="" method="post" enctype="multipart/form-data">  
  <input type="file" name="file" id="file" />
  <input type="submit" />
</form>

为什么第一个表单(Index)向控制器提交正确的文件,但第二个表单(Wonder)向控制器提交 null ?

I have simple controller with two actions:

public class TestController : Controller
{
      // /Test
      public ActionResult Index()
      {
          return View();
      }
      [HttpPost]
      public ActionResult Index(HttpPostedFileBase file)
      {    
          bool b = file == null; //there will be false
          return RedirectToAction("Index");
      }

      // /Test/Wonder
      [HttpGet]
      public ActionResult Wonder()
      {
          return View();
      }        
      [HttpPost]
      public ActionResult Wonder(HttpPostedFile file)
      {
          bool b = file == null; //there will be TRUE!
          return RedirectToAction("Wonder");
      }
}

I have similar views for my actions.
Index action:

<h2>Index</h2>
<form action="" method="post" enctype="multipart/form-data">  
  <input type="file" name="file" id="file" />
  <input type="submit" />
</form>

Wonder action:

<h2>It's wonder!</h2>
<form action="" method="post" enctype="multipart/form-data">  
  <input type="file" name="file" id="file" />
  <input type="submit" />
</form>

Why does first form (Index) submit correct file to controller, but second form (Wonder) submits null to controller?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晒暮凉 2024-11-14 05:51:24

Index ActionResult 接收 HttpPostedFileBase 对象作为参数,而 Wonder ActionResult 接收 HttpPostedFile 对象作为参数。

Your Index ActionResult receives as a parameter a HttpPostedFileBase object whereas the Wonder ActionResult receives as a parameter a HttpPostedFile object.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文