编辑:我认为 url 是罪魁祸首。在工作 login.html 案例中,我进入了日志:
FINE:安全检查请求 POST /SesamaMaven/protected/admin/j_security_check
在 AJAX 版本中,我得到了:
FINE:安全检查请求 POST /SesamaMaven/
我在 Glassfish 中使用 JDBCRealm 配置了身份验证,它似乎可以使用普通的 login.html,如下所示:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Login Form</title>
</head>
<body>
<form method="post" action="j_security_check">
<p>You need to log in to access protected information.</p>
<table>
<tr>
<td>User name:</td>
<td><input type="text" name="j_username" /></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="j_password" /></td>
</tr>
</table>
<p><input type="submit" value="Login" /></p>
</form>
</body>
</html>
我的问题是,当我尝试使用 AJAX 实现相同功能时,它不起作用。有没有可能让它工作?
HTML
<form class="navbar-form pull-right">
<input class="span2" type="text" placeholder="Email" name="j_username" id="username">
<input class="span2" type="password" placeholder="Password" name="j_password" id="password">
<button type="button" class="btn" id="btnSignIn">Sign in</button>
</form>
JS
$('#btnSignIn').click(function() {
$.ajax({
type: "POST",
contentType: "application/text",
url: "j_security_check",
// This is the type what you are waiting back from the server
dataType: "text",
async: false,
crossDomain: false,
data: {
j_username: "admin",
j_password: "paSSWORD"
},
success: function(data, textStatus, xhr) {
alert('Thanks for your signin in! ' + xhr.status);
window.location = "/SesamaMaven/protected/adminWelcome.html";
},
error: function(jqXHR, textStatus, errorThrown) {
console.log(textStatus, errorThrown);
window.location = "/SesamaMaven/index.html";
alert(' Error in signIn-process!! ' + textStatus);
}
});
});
问题
1)什么是正确的内容类型:“应用程序/文本”?
2)URL标签是正确的还是应该使用动作?
3)在这种情况下,参数用户名和密码怎么样?
Glassfish 尝试进行身份验证,但没有用户名和密码。