前台:
$.ajax({
url:'LoginAction_toLogin.jspx',
type: 'post', dataType:'json', cache: false, async:false,
data: {"username":username, "password":password},
success: function(result){
if(result["flag"] == '0'){
window.location.href = "MenuAction_toInfo.jspx";
}else if(result["flag"] == '1'){
var txt="用户名或密码错误,请重新登录";
window.wxc.xcConfirm(txt);
}
}
});
注意的是jesult是json格式数据,如果result[“flag”]的值是true,if(true){}是不成立的
后台:
public void toLogin(){
JSONObject json = new JSONObject();
json.put("flag", "0");
this.renderText(json.toString()); //getHttpServletResponse().getWriter().write(text);
}