Home > Web Front-end > JS Tutorial > body text

In-depth analysis of jquery parsing json data_jquery

WBOY
Release: 2016-05-16 16:28:09
Original
1270 people have browsed it

Let’s first take the JSON data parsing the comments object in the above example as an example, and then summarize the method of parsing JSON data in jQuery.

The JSON data is as follows, which is a nested JSON:

Copy code The code is as follows:

{"comments":[{"content":"Very good","id":1,"nickname":"Nani"},{"content":"Yoshiyoshi","id":2 ,"nickname":"Xiaoqiang"}]}

To get JSON data, there is a simple method $.getJSON() in jQuery.

The following is the official API description of $.getJSON():

jQuery.getJSON( url, [data,] [success(data, textStatus, jqXHR)] )

urlA string containing the URL to which the request is sent.

dataA map or string that is sent to the server with the request.

success(data, textStatus, jqXHR)A callback function that is executed if the request succeeds.

The callback function accepts three parameters. The first is the returned data, the second is the status, and the third is jQuery's XMLHttpRequest. We only use the first parameter.

$.each() is a method used to parse JSON data in the callback function. The following is the official document:

jQuery.each( collection, callback(indexInArray, valueOfElement) )

collectionThe object or array to iterate over.

callback(indexInArray, valueOfElement)The function that will be executed on every object.

The $.each() method accepts two parameters. The first is the object collection that needs to be traversed (JSON object collection). The second is the method used to traverse. This method accepts two parameters. The first is the traversed index, and the second one is the current traversed value. Haha, with the $.each() method, JSON parsing is easily solved. (*^__^*) Hee hee...

Copy code The code is as follows:

function loadInfo() {
$.getJSON("loadInfo", function(data) {
                                                                                                                                                                                                                                                                                                          $                 $("#info").append(
"
" item.id "
"
"
" item.nickname "
" "
" item.content "

");
        });
        });
}

As above, loadinfo is the requested address, function(data){...} is the callback function after the request is successful, data encapsulates the returned JSON object, in the following $.each(data.comments,function The data.comments in the (i,item){...}) method directly reaches the JSON array contained in the JSON data:

Copy code The code is as follows:
[{"content":"Very good","id":1,"nickname":"Nani"},{"content":"Yoshiyoshi","id":2,"nickname": "Xiaoqiang"}]

The function in the $.each() method is to traverse this array and then insert it into the appropriate place by operating the DOM. During the traversal process, we can easily access the current traversal index ("i" in the code) and the current traversal value ("item" in the code).

The results of the above example are as follows:

If the returned JSON data is more complex, just use more $.each() to traverse it, hehe. For example, the following JSON data:

Copy code The code is as follows:
{"comments":[{"content":"Very good","id":1,"nickname":"Nani"},{"content":"Yoshiyoshi","id":2 ,"nickname":"Xiaoqiang"}],
"content":"You are stupid, haha.","infomap":{"Gender":"Male","Occupation":"Programmer",
"Blog":"http://www.xxx.com/codeplus/"},"title":"123 Wooden Man"}

js is as follows:

Copy code The code is as follows:

function loadInfo() {
$.getJSON("loadInfo", function(data) {
           $("#title").append(data.title "
");
           $("#content").append(data.content "
");
//jquery parses map data
          $.each(data.infomap,function(key,value){
$("#mapinfo").append(key "----" value "

");
        });
//Parse array
          $.each(data.comments, function(i, item) {
                $("#info").append(
"
" item.id "
"
"
" item.nickname "
"
"
" item.content "

");
        });
        });
}

It is worth noting that when $.each() traverses the Map, the parameters in function() are key and value, which is very convenient.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!