我做了最简单的 jQuery servlet 调用:
jQuery:
$.ajax( "LoginServlet" )
.done(function() { alert("success"); })
.fail(function() { alert("error"); });
Servlet:
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
System.out.println("Posting");
}
在控制台上,我看到Posting
了,所以调用了 Servlet。但是,我仍然收到“错误”警报。
在其他地方,有人提到了可能的“跨站点脚本”问题。这可能是问题吗?
我的 servlet 位于:localhost:8080/Test/LoginServlet