如何在jsp页面上使用jquery ajax获取json数据。请任何人都可以为我推荐一些函数。我必须将来自servlet的数据传递给javascript,如var data = {“some json data”}
答案 0 :(得分:0)
似乎jQuery.getJSON()的jQuery文档有例子。
答案 1 :(得分:0)
是的,您应该从servlet中检索json字符串,并使用类似getJSON
的函数读取它$.getJSON('ajax/json_data.php', function(data) {
// do whatever you need with data
});
答案 2 :(得分:0)
1)将JQuery添加到您的页面中:http://jquery.com/
2)使用getJSON方法回调服务器端JSP页面以检索JSON数据:http://api.jquery.com/jQuery.getJSON/
3)如果要将JSON数据解析为对象,请使用Douglas Crockford的JSON库:https://github.com/douglascrockford/JSON-js