gpt4 book ai didi

javascript - 使用 ajax 和 Play Framework 2 发送 Post Json

转载 作者:搜寻专家 更新时间:2023-11-01 05:01:26 25 4
gpt4 key购买 nike

我在向 Play Controller 发送 json 数据时遇到问题。

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();
}

调试我得到 json = null 。您认为哪个可能是问题所在?谢谢。

最佳答案

你必须 stringify数据。就目前而言,我认为 .toString() 将在数据对象上调用,这不是可以在服务器端正确解析为 JSON 的东西。

var d = { 'filter': "John Portella" };
$.ajax({
type : "POST",
dataType: 'json',
data: JSON.stringify(d),
url : "@routes.Search.findPag()",
success: function(data){
console.log(data);
}
});

关于javascript - 使用 ajax 和 Play Framework 2 发送 Post Json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16408867/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com