search
HomeWeb Front-endJS TutorialSummary of things to know about using JSON
Summary of things to know about using JSONApr 24, 2018 pm 05:18 PM
javascriptjsonSummarize

This time I will bring you a summary of the instructions for using JSON. What are the precautions for using JSON? The following is a practical case, let's take a look.

Terms

Portability
Compatibility of transferring information between platforms and systems.

JSON
JavaScriptObjectNotation object notation.

Data exchange format
Text used to exchange data between different platforms or systems.

Literal value
The literal meaning is exactly the same as the value it wants to express.

Variable
is represented by an identifier in the shape of X and can be modified.

Maximum portability
Provides portability beyond the data format itself by ensuring the compatibility of the data itself with the platform and system.

Name-value pair
refers to attributes and characteristics (also called key-value pairs) that have names and corresponding values.

Syntax verification
Verification of json format.

Consistency verification
Focus on unique data structure verification.

String type in JSON
A string value, such as "You are a good person", is wrapped in double quotes.

concept

JSON is a data exchange format.

JSON is independent of programming languages.

JSON is based on the literal representation of JavaScript object (the emphasis is on the representation).

The way JSON expresses data is friendly to common programming concepts.

JSON is based on JavaScript object literalsThe syntax for representing properties, but does not include the function-related parts of JavaScript object literals.

In JSON name-value pairs, the name is always wrapped in double quotes.

JSON name-value pair, the value can be a string, number, Boolean value, null, object array.

Lists of name-value pairs in JSON are always wrapped in curly braces.

Multiple name value pairs in JSON are separated by commas.

JSON files use the .json extension.

The media type of JSON is application/json.

The Boolean type values ​​in JSON are only true and false, and all letters must be lowercase.

All letters of the null value in JSON must be lowercase, indicating a null value.

Number type in JSON, a numeric value, such as 66, can be a positive integer, a negative integer, a decimal, or an exponent.

The key difference between objects and arrays is that objects are lists or collections of name-value pairs, and arrays are lists and collections of values.

Another key difference between objects and arrays is that all values ​​in an array should have the same data type.

Terms
Arrays in JSON
An array is a collection or list of values, each value can be a string, number, boolean, object or in an array any type. Arrays must be wrapped in [] and separated by commas.

Object type in JSON
Object type is a collection of name-value pairs separated by commas and wrapped with {}.

JSON Schema
A virtual contract in data exchange.

Server side (in web development)

A series of operations performed on the server when web resources are requested. The server provides the Internet browser with responses that it processes and loads.

Client (in web development)
A series of operations performed when the interface requested by the browser is loaded, usually referring to HTML, CSS and JavaScript.

Concept
The JSON validator is responsible for validating syntax errors, and JSON Schema is responsible for providing consistency verification.

JSONSchema is the first line of defense responsible for data reception, and is also a good tool for the data sender to save time and ensure that the data is correct.

JSONSchema can solve the following consistency verification problems
1. Is the data type of the value correct? You can specify that a value is a number, string, etc. type.
 2. Does it contain the required data? You can specify which data is required and which is not.
 3. Is the form of the value what I need? You can specify a range, minimum value and maximum value.

JSON itself poses no threat, it is just text.

When locating JSON security issues, you should remember the following 3 things.
1. Do not use top-level arrays. Top-level arrays are legal JavaScript scripts. They can use tag link and use.
 2. For resources that do not want to be made public, only the HTTPPost method is allowed to be requested, not the Get method. The get method can be requested through the url or even placed in the script tag.
 3. Use JSON.parser() instead of eval(). The eval() function will compile and execute the incoming string, which will make your code vulnerable to attacks. You should only use JSON.parser() to parse json data.

Security vulnerabilities are often caused by developers not considering how hackers could exploit this.

The relationship between JavaScript’s XMLHTTPRequest and WEBAPI is the relationship between the client and the server.

XMLHTTPRequest is not limited to XML, you can also use it to request JSON resources

Terms
Cross-site request forgery (CSRF)
refers to the use of site Attack the trust of the user's browser

Top-level JSON arrayA JSON array at the top of the document that exists outside of the JSON name-value pairs.

Injection attack
An attack that relies on injecting data into a web application to facilitate the execution or compilation of malicious data.

JSON cross-site scripting attack
An injection attack on the site by intercepting or replacing third-party code used in the site with malicious scripts.

webApi
A series of instructions and standards for interacting with services through HTTP.

XMLHTTPRequest
A JavaScript object that can obtain data from a URL without refreshing the page. It is commonly used in AJAX programming.

Hypertext Transfer Protocol (HTTP)
Basic protocol for exchanging data used by the World Wide Web

Serialization
The operation of converting objects into text

Deserialization
The operation of converting text into objects.

Concept
The website serves people, webAPI serves code, and they both use the Http protocol.

The same-origin policy makes it difficult for JavaScript and JSON resources to communicate client-server.

The client's cross-domain XMLHTTPRequest requires server support to ensure the success of the JSON resource request.

jQuery is an abstraction tool that provides JSON request and parsing functions that can shorten development time. It also solves cross-browser compatibility issues.

The concept of AngularJS MVC
JSON is a model||data model
HTML is a view and provides the syntax to bind to the model
The controller is AngularJS Syntax for defining and manipulating JavaScript files that interact with models and views.

AngularJS makes JavaScript objects and JSON shine in the MVC architecture.

In relational database, there are often table columns and rows and the relationship between them, in which primary keys and foreign keys are used.

There are many types of NoSQL databases, and they have different data storage and utilization methods from the traditional relational model.

Important concepts of CouchDB database
1. It is a document-oriented NoSQL database
2. It stores and manages JSON documents
3. It maintains data while storing and retrieving it Good data structure
4. It will use an HTTP-based API to obtain data as a JSON document resource
5. Ituses JavaScript as the query language and uses the map and reduce methods of the view Get data across APIs.

On the server side, JSON can be deserialized into objects and used in programming logic, or objects can be serialized into JSON format.

JSON is well supported by both the server and the client, making it stand out from many exchange data formats in the web field.

Terms
Same Origin Policy
For security reasons, the browser will only request scripts from the same domain.

Cross-domain resource sharing CORS
By setting the response header, cross-domain requests can be successful.

JSON-p
Use the script tag to bypass the same-origin policy restrictions and request JSON from servers with different domain names.

Abstraction
A technology for dealing with complex systems. The main idea is to convert a big problem into multiple small problems

Framework
A technology that can save time and has made We focus more on building abstract tools for functionality.

Jquery.parserJSON()
A jquery function, which not only calls the JSON.parser() function, but is also compatible with old browsers that do not support the JSON.parser() function, and passes the verification character to evaluate the string, thus avoiding possible security issues.

jquery.getJSON()
The short form of the jquery.ajax() function, which includes the function of parsing json into a JavaScript object.

Single-page web application
Different from the traditional multi-page method, it focuses on web pages that provide a more seamless application experience.

Model-View-Controller (MVC)
An application architecture pattern that divides the application into 3 parts: model (data), view (presentation), and controller (updating model and view) )

AngularJS
A JavaScriptMVC framework that uses JavaScript objects as data models.

Relational database
A database that stores stored data in a structured manner using identifiable relationships.

NoSQL database
A database that does not store relationships by storing data.

CouchDB
A document-oriented NoSQL database storage type that uses JSON documents to store data.

ASP.NET
Server-side Web framework developed by Microsoft

PHP
Server-side scripting language for creating dynamic web pages

Ruby on Rails
Server-side Web application framework written in Ruby

Node.js
Server-side JavaScript based on Google V8 engine.

java
An object-oriented programming language.

JSON will also serve as a static configuration file

When considering what data format to use, the form of the data and the system for exchanging the data should be considered. ! ! ! JSON is not always the best choice.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Adjustment of ajax execution order in jquery

Detailed explanation of Ajax and $.ajax instances

The above is the detailed content of Summary of things to know about using JSON. For more information, please follow other related articles on the PHP Chinese website!

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
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

20+道必知必会的Vue面试题(附答案解析)20+道必知必会的Vue面试题(附答案解析)Apr 06, 2021 am 09:41 AM

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

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

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)