前臺傳遞引數使用變數@RequestParam springmvc

瓜瓜東西發表於2014-10-18
@RequestMapping("/mainpage")
public void mainPage(@RequestParam String type ){
System.out.println(type);
if(type==null && "".equals(type))
{
Log.error("型別為空");
}else if(type.equals("C")){
this.loginType="C";
}else if("S".equals(type))
{
this.loginType="S";
}else if("SC".equals(type)){
this.loginType="SC";
}
login();
}

相關文章