MVC 重定向到不同的视图

是否可以从控制器重定向到不同的视图?

例如,所有控制器都继承自一个自定义控制器,该控制器具有一个构造函数,如果不满足某些条件,我希望将其重定向到不同的视图。 希望你能理解。

248273 次浏览

You can use the RedirectToAction() method, then the action you redirect to can return a View. The easiest way to do this is:

return RedirectToAction("Index", model);

Then in your Index method, return the view you want.

I am not 100% sure what the conditions are for this, but for me the above didn't work directly, thought it got close. I think it was because I needed "id" for my view by in the model it was called "ObjectID".

I had a model with a variety of pieces of information. I just needed the id.

Before the above I created a new System.Web.Routing.RouteValueDictionary object and added the needed id.

(System.Web.Routing.)RouteValueDictionary RouteInfo = new RouteValueDictionary();
RouteInfo.Add("id", ObjectID);
return RedirectToAction("details", RouteInfo);

(Note: the MVC project in question I didn't create, so I don't know where all the right "fiddly" bits are.)

 if (true)
{
return View();
}
else
{
return View("another view name");
}

Here's what you can do:

return View("another view name", anotherviewmodel);

The simplest way is use return View.

return View("ViewName");

Remember, the physical name of the "ViewName" should be something like ViewName.cshtml in your project, if your are using MVC C# / .NET.

return RedirectToAction("index");

This is how I use it in the controller and actionresult that needs to be redirected.