我正在尝试将 jQuery 的 getJSON 函数与 Play 框架一起使用。我正在传递一个查询字符串。但看起来它没有获得价值,只有关键
这是我的 jQuery 函数:-
<script type="text/javascript">
$(function() {
$("#button").click(function() {
$.getJSON(
'/getJsonResult',
{'foo':'bar'},
function(data) {
$.each(data, function(i, result) {
if(i != undefined) {
var result_html = '<ul><li>';
result_html += result + '<\/li><\/ul>';
$('#result_container').append(result_html);
}
});
}
);
});
});
</script>
这是操作方法:-
public static Result getJsonResult() {
Map queryParameters = request().queryString();
List data = Arrays.asList("result", "This is just a test");
if (queryParameters != null) {
System.out.println("QS Key ---> " + queryParameters.containsKey("foo"));
System.out.println("QS Value ---> " + queryParameters.containsValue("bar"));
}
return ok(Json.toJson(data));
}
输出:-
[info] play - Application started (Dev)
QS Key ---> true
QS Value ---> false