我正在尝试使用play framework 2.1(java)实现一些简单的事情:
通过jquery发布JSON数据,并从控制器中检索它。
请你告诉我哪里错了?
它从javascript调用开始:
var object = new Object();
object.title = "Hamlet";
object.author = "Bill";
var jsonData = JSON.parse(JSON.stringify(object));
jsRoutes.controllers.Application.update().ajax({
type : 'POST',
dataType : 'json',
data : jsonData,
success : function(data) {
// I get the success
},
error : function(data) {
alert('error');
}
});
数据似乎已正确发布: Firebug控制台:
接头:
Response Headers
Content-Length 2
Content-Type text/plain; charset=utf-8
Request Headers
Accept application/json, text/javascript, */*; q=0.01
Accept-Encoding gzip, deflate
... 参数
Parametersapplication/x-www-form-urlencoded
title Hamlet
author Bill
Source
title=Hamlet&Author=Bill
它在这里路线:
POST /update controllers.Application.update()
这是应用程序控制器:
@BodyParser.Of(BodyParser.Json.class)
public static Result update() {
JsonNode json = request().body().asJson();
if(json == null){
return badRequest("empty json"); // PROBLEM: THE JSON IS ALWAYS NULL
}
return ok("{}");
}
我得到的问题是我无法从请求中检索我的参数。 如果我打印它,request()似乎是空的:
DefaultRequestBody(None,None,None,None,None,None,true)
你看到我错了吗?我怎么能把JSON弄好呢?
提前致谢
答案 0 :(得分:5)
我有完全相同的问题。除dataType
外,您还需要设置contentType
,原始海报建议:
var jsonMsg = JSON.stringify(msg);
jsRoutes.controllers.Application.sendJson().ajax({
type : 'POST',
dataType : 'json',
contentType : 'application/json; charset=utf-8',
data : jsonMsg
});
答案 1 :(得分:0)
这可能有助于您举例说明如何逐步实现ajax Play 2.x: How to make an AJAX request with a common button