这是我家控制器的默认索引功能
public ActionResult Index()
{
if (User.Identity.IsAuthenticated)
{
return NewPosts();
}
else
{
ViewBag.Message = "Welcome!";
return View();
}
}
这是同一个主控制器文件中的 newposts 函数
public ActionResult NewPosts()
{
return View();
}
我已登录我的帐户并关闭浏览器。然后我重新打开它访问同一个索引页面,我看到了我的身份(欢迎我的用户名),但没有调用 newposts 函数,因此它没有按预期显示 newposts 视图。
这是为什么 ?我怎样才能解决这个问题 ?
谢谢你。