Post/Redirect/Get Pattern in ASP.NET MVC

五迷三道 提交于 2019-12-17 19:38:03

问题


What is the best practice for implementing the Post/Redirect/Get pattern in ASP.NET MVC? In particular, what is the best way to do this when you want to redirect back to the initial action/controller?

Here's how I am currently doing this:

  1. Display form to user.
    • In the form, use <%= Html.Hidden("returnUrl") %>
    • In the action, use ViewData["returnUrl"] = Request.Url;
  2. User submits the form via POST
  3. Redirect to the returnUrl model-binding, if not null. Otherwise, redirect to homepage.

This get's the job done, but it feels like this would result in a lot of duplication. I also realized that I could probably redirect to Request.UrlReferrer...

What do you suppose is the cleanest, most ideal method of accomplishing this?


回答1:


The way you're doing this is fine, but it looks like you might be overthinking it a little bit. Do your POST actions take form posts from more than one form? If not, why bother with a hidden form field? You could get away with a simple RedirectToAction("MyAction")




回答2:


Typically, an action that handles a POST knows where it needs to redirect upon successful submission. Therefore, each action that implements RGP can simply invoke RedirectToAction(string).

public ViewResult Edit(string email)
{
  // save the email
  return RedirectToAction("Edit");
}


来源:https://stackoverflow.com/questions/2120882/post-redirect-get-pattern-in-asp-net-mvc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!