In PHP, we return the JSON to an AJAX call like this:
在PHP中,我们将JSON返回到这样的AJAX调用:
json_encode($data);
How do we do that in JSP?
我们如何在JSP中做到这一点?
JSP:
<%
gson.toJson(map, System.out); // last line
%>
jQuery:
$.get("lookup_all_phone_numbers.jsp")
.done(function(data){
$("#results").append(data);
});
1 个解决方案
#1
0
I ended up using:
我最终使用:
out.print(gson.toJson(map));
#1
0
I ended up using:
我最终使用:
out.print(gson.toJson(map));