Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use Json

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "how to use Json". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Now let the editor take you to learn how to use Json.

Json is generally used in a small amount of data processing. Because the format is simple and easy to operate, and javascript can support the processing function of Json format. Therefore, it is recommended that you use

The general format of Json is as follows: {"id": "1", "name": "abc"} or [{"id": "1", "name": "abc"}, {"id": "1", "name": "abc"}]

Here are several ways to interpret the Json format in js:

Eval ('('+ Json+')')

Why do you write this: mainly because in JavaScript, expression statements are not allowed to start with the left curly bracket "{", which will be confused with block statements. To solve this problem, you need to add parentheses when parsing JSON text using eval (). Parentheses are used as grouping operators to apply for jobs for expressions surrounded by parentheses.

Var strJSON= (new Function ("return" + Json)) ()

Interpret Json by creating methods

Var strJSON= JSON.parse (Json)

Note: the Json format that can be interpreted by this method must be enclosed in double quotation marks for key-value pairs, otherwise the Json format cannot be explained.

Example

Json.aspx page

/ / Asynchronous processing of Json objects $("# btn") .click (function () {$.ajax ({url: "Json.ashx", type: "post", data: {id: "123"}, datatype:" Json ", success: function (data) {var strData = data; alert (" 1-"); var str1 = eval (" ("+ data +") ") / / * js interpretation Json alert ("2 -"); var str2 = (new Function ("return" + strData)) (); / / second js interpretation Json alert (str2.id + "@" + str2.name); alert ("3 -"); var str3 = JSON.parse (strData); alert (str3.id + "@" + str3.name) / / processing multidimensional Json var strSs = ""; alert (str1.length); for (var I = 0; I)

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report