RedirectToAction MVC2 的问题 - 无法隐式转换类型“System.Web.Mvc.RedirectToRouteResult”到“System.Web.Mvc.ViewResult”

发布于 2024-11-11 19:50:09 字数 625 浏览 0 评论 0原文

我在尝试使用 RedirectToAction 时收到此错误,任何人都可以提供有关为什么会发生这种情况的任何建议吗?我之前使用过这个,没有任何问题,我一定错过了一些东西。

无法将类型“System.Web.Mvc.RedirectToRouteResult”隐式转换为“System.Web.Mvc.ViewResult”

 [HttpPost]
    public ViewResult Edit(Customer customer)
    {
        if (ModelState.IsValid)
        {
            customersRepository.SaveCustomer(customer);
            TempData["message"] = customer.CustomerName + " has been saved.";
            return RedirectToAction("Index");
        }

        else //validation error, so redisplay the same view
            return View(customer);

    }

问候

Liam

I am receiving this error when trying to use RedirectToAction, can anyone offer any advice on why this could be occuring, ive used this before without any problems, i must be missing something.

Cannot implicitly convert type 'System.Web.Mvc.RedirectToRouteResult' to 'System.Web.Mvc.ViewResult'

 [HttpPost]
    public ViewResult Edit(Customer customer)
    {
        if (ModelState.IsValid)
        {
            customersRepository.SaveCustomer(customer);
            TempData["message"] = customer.CustomerName + " has been saved.";
            return RedirectToAction("Index");
        }

        else //validation error, so redisplay the same view
            return View(customer);

    }

Regards

Liam

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

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

发布评论

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

评论(1

情徒 2024-11-18 19:50:09

尝试将 public ViewResult Edit(Customer customer) 更改为 public ActionResult Edit(Customer customer)

ViewResult 派生自 ActionResult,只能返回 View。由于您的代码可以返回视图或重定向,因此您应该使用 ActionResult。有关详细信息,请参阅此答案

Try changing public ViewResult Edit(Customer customer) to public ActionResult Edit(Customer customer)

ViewResult is derived from ActionResult and can only return Views. Since your code can return a View or a Redirect, you should use an ActionResult. See this answer for more information.

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