我现在是做了一个简单的登陆例子
代码如下
[HttpPost]
public ActionResult Login(Models.Login model)
{
if (Models.SqlHelper.ExistUser(model))
{
return RedirectToAction("Index");
}
else
{
ViewData["msg"] = "登陆失败";
return View(model);
}
}
我现在想在登陆成功后跳转到Index视图并显示
欢迎xx
如何实现在RedirectToAction("Index")的时候并传递model.username到Index视图中显示出来
用 Redirect 跳转,构建url,话说 登陆了,当前用户的 key保存到 cookie中,要获取当前用户信息,根据cookie凭证再去数据库取一次
model.username可以声明为一个全局的变量,然后为username赋值,最后跳到index页面上利用Struts2标签取出来
谢谢你的回答,不过不太理解你这种方法,如果方便可以给个简单的demo参考下,谢谢!