Getting Json Data Using Jquery Ajax On Jsp Page
How do i get json data using jquery ajax on jsp page.Please can anyone suggest me some function for it.I have to pass data coming from servlet to javascript like var data={'some js
Solution 1:
Seems like the jQuery docs for jQuery.getJSON() has examples.
Solution 2:
1) Add JQuery into your page: http://jquery.com/
2) Use the getJSON method to call back to the server-side JSP page to retrieve the JSON data: http://api.jquery.com/jQuery.getJSON/
3) If you want to parse the JSON data into an object, use Douglas Crockford's JSON library: https://github.com/douglascrockford/JSON-js
Solution 3:
Yes, you should retrieve from servlet the json string, and read it using a function like getJSON
$.getJSON('ajax/json_data.php', function(data) {
// do whatever you need with data
});
Post a Comment for "Getting Json Data Using Jquery Ajax On Jsp Page"