admin管理员组文章数量:1344107
I have a problem regarding sending a json data to Play Controller.
seach.scala.html
$.ajax({
type : "POST",
dataType: 'json',
data: {
'filter': "John Portella"
},
url : "@routes.Search.findPag()",
success: function(data){
console.log(data);
}
});
return false;
Controller : POST /find/findPag Search.findPag()
public static Result findPag(){
JsonNode json = request().body().asJson();
return ok();
}
Debugging I get json = null . Which you think may be the problem?. Thank.
I have a problem regarding sending a json data to Play Controller.
seach.scala.html
$.ajax({
type : "POST",
dataType: 'json',
data: {
'filter': "John Portella"
},
url : "@routes.Search.findPag()",
success: function(data){
console.log(data);
}
});
return false;
Controller : POST /find/findPag Search.findPag()
public static Result findPag(){
JsonNode json = request().body().asJson();
return ok();
}
Debugging I get json = null . Which you think may be the problem?. Thank.
Share Improve this question asked May 6, 2013 at 23:27 JohnPortellaJohnPortella 1,8215 gold badges22 silver badges30 bronze badges2 Answers
Reset to default 8You'll have to stringify the data. As it is right now I think that .toString()
will be called on the data object and that is not something that can be correctly parsed as JSON on the server side.
var d = { 'filter': "John Portella" };
$.ajax({
type : "POST",
dataType: 'json',
data: JSON.stringify(d),
url : "@routes.Search.findPag()",
success: function(data){
console.log(data);
}
});
You'll have to "contentType" the data.
var d = { 'filter': "John Portella" };
$.ajax({
type : "POST",
dataType: 'json',
data: JSON.stringify(d),
contentType: "application/json; charset=utf-8",
url : "@routes.Search.findPag()",
success: function(data){
console.log(data);
}
});
本文标签: javascriptSend Post Json with ajax and Play Framework 2Stack Overflow
版权声明:本文标题:javascript - Send Post Json with ajax and Play Framework 2 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743744448a2531498.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论