对于我的生活,我无法弄清楚发生了什么。我有一个servlet 发布数据,但每次我尝试将我的ajax数据发布到servlet时我都会继续 数据为空。
这是我的代码:
jQuery.ajax({
type: 'POST',
url: 'servletURL',
data:
{
'email': 'test@gmail.com'
},
success: function(response) { },
error: function(response) { }
});
Servlet代码:
protected void doPost(SlingHttpServletRequest request, SlingHttpServletResponse response) throws ServletException, IOException {
final String email = request.getParameter("email");
}
关于为什么我会继续获得null的任何想法?任何帮助表示赞赏。我通过代码学得最好 样品请尽量包括适用的样品。谢谢!