2018-08-31 10:13

@JFinal 那我用户信息要是存在session,然后重定向取值呢?render是转发url不会改变吧

2018-08-31 09:13

代码片段:

@ActionKey("/login")
public void login() {
Record record = userService.login(getPara("userName"), getPara("password"));
System.out.println(record);
if (record == null) {
renderText("登陆失败");
} else {
setSessionAttr("x", record);
// setAttr("x", record);
//getResponse().sendRedirect("/UsersDemo-JFinal/index.html");
redirect("/index.html");


}
}
@JFinal

2018-08-31 08:30

使用的是3.4的版本,并且有没有设置视图类型啊,
@JFinal