search
HomeWeb Front-endJS TutorialWhy is JSON so popular? Why should we use json (there is another cave)_Basic knowledge

json is something that has quickly become popular all over the world within a year.
Now that I explain what JSON is, everyone will say that I am old-fashioned. Here I want to analyze the reasons why JSON is red and what enlightenment we can get.
What is json? json.org is a concise and effective data carrier. It is a way to use strings to represent complex js objects. The backend is easy to generate and the frontend has no explanation.
Its popularity is inseparable from the following reasons.

Persistence trend:
Persistence is an important module introduced by javaEE5.
PHP has the inherent persistence feature. Each variable can be serialized() and unserialize() and converted into strings.
The most direct benefit brought by persistence is the storage and transmission of complex objects. An important criterion for measuring the quality of the persistence mechanism is efficiency.

The promotion of WEB2.0:
Ajax triggered the Web2.0 revolution, where x is xml. In Ajax, XML is used as a carrier for front-end and back-end data transmission.
With the large-scale application of Web2.0, the efficiency problem of xml interpretation has been undoubtedly exposed. xml has a very strictly prohibited structure, which causes any browser to load xml and interpret it into objects that can be accessed by javascript. The process is long. JSON is the simplest object creation method supported by JS by default. It is easy and pleasant for JS to receive it, so in the arena of persistent data transmission, JSON wins by efficiency.

JSON itself is easy to use:
Why is Ajax suddenly popular when combined with some old technologies? Because it is easy to use. To put it bluntly, since the advent of DHTML in the last century, xmlHttpRequest is not the only solution to refresh-free asynchronous data transmission. Hidden iframes can definitely be done, and people do it all the time. Ajax is popular because of its ease of use, so the large-scale application of several leading companies triggered Web2.0.
JSON is also easy to use. After knowing JSON, I have used var obj = {};var arr = [ ] instead of var obj = new Object(); var obj = new Array(). JSON is the most concise object definition method in js. For those who know js and have used eval(), there is basically no learning cost.

The popularity of tree structures represented by XML:
Look at the popularity of xml from the perspective of data structure, because xml is a tree, and tree-like data structures are used in things like Everyone knows the power of xml in addition to its own content nodes plus attribute nodes. DOM has this structure, and UML has this structure.
When we use data to describe the objective world, we find that relying solely on two-dimensional tables in the relational data model is clumsy. The tree structure is closer to thinking. This is why people no longer use Notepad when taking meeting minutes. And the reason for using freemind. Also using a two-dimensional table, the inefficiency of storing the tree by recording parentid also gives LADP room for development.
Speaking of JSON, it is a way to define JS objects, and Object in JS is an entity organized in the form of a tree, so the objects defined by JSON are sufficient in describing the function of data.

Let’s talk about a few more JSON-related topics:
Is JSON the only way to solve the xml efficiency problem?
Not necessarily. Before I knew json, I was using div to transmit data.
What is passed from the background to the front is xmlHttp.responseText = '

lenel
';
Then the frontend uses
Copy code The code is as follows:

function toDivElememnt(s){
var oDiv = document.createElement(" div");
oDiv.innerHTML = s;
oDiv = oDiv.firstChild;
return oDiv;
}

I did not use js to explain this method json, but uses DOM to interpret HTML strings, which is quite natural. As mentioned before, HTML strings are also tree structures. After I get oDiv, I can access attributes such as age, personid, etc., and the efficiency is quite good. ,hehe.
This is not my original work, it comes from my former leader, a great person, a good mentor and helpful friend.

Will JSON replace XML?
No, in the field of Ajax we may do Ajaj, but if XML can only do this, it is not XML :)

Haven’t you used JSON yet?
Don’t be left behind, haha. The current mainstream backend languages ​​all have APIs to generate and parse JSON in the backend. How to use json and where to find the API? Let’s take a look at http://www.json.org

Have we really learned anything?
I still haven’t summarized it specifically, but I think the languages ​​​​are similar. Can’t javaScript be IOC?
Statement
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
VUE3怎么使用JSON编辑器VUE3怎么使用JSON编辑器May 12, 2023 pm 05:34 PM

1、先看看效果图,可以自行选择展示效果2、这是我在vue3项目中使用的JSON编辑器,首先引入第三方插件npminstalljson-editor-vue3yarnaddjson-editor-vue33、引入到项目中//导入模块importJsonEditorVuefrom'json-editor-vue3'//注册组件components:{JsonEditorVue},4、一般后端返回的是会将JSON转为String形式我们传给后端也是通过这种形式,就可以通

SpringBoot之Json的序列化和反序列化问题怎么解决SpringBoot之Json的序列化和反序列化问题怎么解决May 12, 2023 pm 04:07 PM

控制json序列化/反序列化1.@JsonIgnoreProperties的用法@JsonIgnoreProperties(value={"prop1","prop2"})用来修饰Pojo类,在序列化和反序列化的时候忽略指定的属性,可以忽略一个或多个属性.@JsonIgnoreProperties(ignoreUnknown=true)用来修饰Pojo类,在反序列化的时候忽略那些无法被设置的属性,包括无法在构造子设置和没有对应的setter方法.2.@Js

Java怎么调用接口获取json数据解析后保存到数据库Java怎么调用接口获取json数据解析后保存到数据库May 14, 2023 am 10:58 AM

Java调用接口获取json数据保存到数据库1.在yml文件中配置自己定义的接口URL//自己定义的JSON接口URLblacklist_data_url:接口URL2.在Controller中添加请求方法和路径/***@Title:查询*@Description:查询车辆的记录*@Author:半度纳*@Date:2022/9/2717:33*/@GetMapping("/Blacklist")publicvoidselectBlacklist(){booleana=imB

深入解析JWT(JSON Web Token)的原理及用法深入解析JWT(JSON Web Token)的原理及用法Jan 10, 2023 am 10:55 AM

本篇文章给大家带来了关于JWT的相关知识,其中主要介绍了什么是JWT?JWT的原理以及用法是什么?感兴趣的朋友,下面一起来看一下吧,希望对大家有帮助。

java怎么校验json的格式是否符合要求java怎么校验json的格式是否符合要求May 15, 2023 pm 04:01 PM

JSONSchemaJSONSchema是用于验证JSON数据结构的强大工具,Schema可以理解为模式或者规则。JsonSchema定义了一套词汇和规则,这套词汇和规则用来定义Json元数据,且元数据也是通过Json数据形式表达的。Json元数据定义了Json数据需要满足的规范,规范包括成员、结构、类型、约束等。JSONSchema就是json的格式描述、定义、模板,有了他就可以生成任何符合要求的json数据json-schema-validator在java中,对json数据格式的校验,使用

php如何将xml转为json格式?3种方法分享php如何将xml转为json格式?3种方法分享Mar 22, 2023 am 10:38 AM

当我们处理数据时经常会遇到将XML格式转换为JSON格式的需求。PHP有许多内置函数可以帮助我们执行这个操作。在本文中,我们将讨论将XML格式转换为JSON格式的不同方法。

php输出json无法解析的原因和解决方法【总结】php输出json无法解析的原因和解决方法【总结】Mar 23, 2023 pm 04:35 PM

PHP作为一种常见的编程语言,在web开发中使用广泛,其与前端交互的方式也多种多样。其中,输出Json数据是一种常见的交互方式,但有时候会碰到Json无法解析的问题。为什么会出现无法解析的情况呢?下面列举了几个可能的原因。

SpringBoot怎么返回Json数据格式SpringBoot怎么返回Json数据格式May 19, 2023 pm 11:49 PM

一、@RestController注解在SpringBoot中的Controller中使用@RestController注解即可返回JSON格式的数据。@RestController注解包含了@Controller和@ResponseBody注解。@ResponseBody注解是将返回的数据结构转换为JSON格式。@Target({ElementType.TYPE})@Retention(RetentionPolicy.RUNTIME)@Documented@Controller@Respons

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.