这是我当前的代码,我用它来实现标签
public ActionResult Index(string tabs, int id = 0)
{
switch ((Tabs)Enum.Parse(typeof(Tabs), tabs,true))
{
case Tabs.Profile:
default:
return Profile(id);
}
}
public ActionResult Profile(int id = 0)
{
User user = UsersRepository.GetUser(id);
if (user!= null)
{
return View(user);
}
return Redirect("/");
}
我不想使用RedirectToAction
,因为这会改变我想要的网址结构。像这样:
http://localhost/user?tabs=profile
http://localhost/user?tabs=settings
答案 0 :(得分:0)
这是我目前的看法,这看起来不自然
public ActionResult Index(string tabs, int id = 0)
{
switch ((Tabs)Enum.Parse(typeof(Tabs), tabs,true))
{
case Tabs.Profile:
default:
var userProfile= Profile(id);
if (userProfile!= null)
{
return View("Profile",userProfile);
}
return Redirect("/");
}
}
[NonAction]
public UsersViewModel Profile(int id = 0)
{
UsersViewModel user= UsersRepository.GetUser(id);
return user;
}