我在通过简单的应用程序从ajax帖子中检索数据时遇到了问题,只是进行了一些测试。
我正在处理一些简单的事情:
我有2个课程:
Controller.java:
@RequestMapping(value = "/urlpost", method = {RequestMethod.GET, RequestMethod.POST} )
public urlPostTest(HttpServletRequest request, HttpServletResponse response) {
request.setCharacterEncoding("UTF-8");
String name = request.getParameter("post_name");
String age = request.getParameter("post_age");
System.out.println("His name is: " + name);
System.out.println("His age is: " + age);
}
还有
PostingClass.js
function posting(){
$.ajax({
url: 'urlpost',
method: 'POST',
data: {
'post_name': "Peter",
'post_age': "22"
},
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function () {
console.log("Send data: SUCCES.");
}
});
}
ajax可以正确访问URL,但是请求始终为空。
可能是什么问题?
谢谢。
答案 0 :(得分:0)
request.getParameter("post_name"); // works on application/x-www-form-urlencoded
要从application / json请求中获取数据,请使用以下内容:
String jsonStr = IOUtils.toString(request.getInputStream());
JSONObject jsonObj = new JSONObject(jsonStr);
String name = getString("name");