使用ajax验证信息
2021-04-24 17:28
标签:red context 密码 用户 mamicode lse ajax验证 ima image controller username,password输入框和提示
用户名:
密码:
checkid和checkpwd 页面效果 使用ajax验证信息 标签:red context 密码 用户 mamicode lse ajax验证 ima image 原文地址:https://www.cnblogs.com/pinked/p/12233579.html使用ajax验证信息
@RequestMapping("/check")
public String check(String username, String password) {
String msg = "";
if (username != null) {
if ("admin".equals(username)) {
msg = "ok";
} else {
msg = "用户名错误";
}
}
if (password != null) {
if ("123456".equals(password)) {
msg = "ok";
} else {
msg = "密码错误";
}
}
return msg;
}