search
HomeWeb Front-endJS TutorialOverview of the impact of escape characters () on JSON.parse in JavaScript_Basics

According to the explanation in the fifth edition of ECMA262, JSON is a built-in object that provides stringify and parse methods. The former is used to convert js objects into strings that conform to json standards, and the latter converts strings that conform to json standards into js objects. . json standard reference json.org . (In fact, you can use eval to convert a string that conforms to the json standard into a js object, but eval has relatively poor performance and has security risks (it will execute the code in the json string). This article only writes JSON)
This article writes about conversion The impact of meaning characters on the JSON.parse method.

Generally speaking, when the parameters of JSON.parse contain transfer characters, you will encounter two escaping problems. In fact, the first time is the escaping of the string itself, and the second time is the actual conversion to Escape of js objects.

An example is as follows:
Example 1: Pass the string '{"a":"b","b":"\\"}' to JSON.parse, first the parser extracts the single quotes When enclosing a string, it is considered that the first one is escaped, the second one is escaped, and the third one is escaped the fourth one. That is to say, the actual output string is {"a":"b","b":"\"} (It can be verified through console.log('{"a":"b","b":"\\"}')), and then there is another escape when it is officially converted into a js object, which is the actual output character. The first one escapes the second one (there are only two at this point). So console.log(JSON.parse('{"a":"b","b":"\\"}') ); the output result is Object {a: "b", b: ""}, also That is to say, the actual displayed data is one (actually one data can be output, indicating that there is another one before this).
Example 2:
var obj = {
a : "b",
b : "\",
c : {
b : "\",
a : {
b : "\"
}
}
};
var json_str = JSON.stringify(obj);
console.log( JSON.stringify(obj) ) ;
console.dir(JSON.parse(json_str));
console.dir(JSON.parse('{"a":"b","b":"\\","c": {"b":"\\","a":{"b":"\\"}}}'));The output result is as shown below
pic
According to the escaping rules, the actual output is There must be one before this one. So the output of the first line above is '{"a":"b","b":"\\","c":{"b":"\\","a":{" b":"\\"}}}', which can be verified by the third output.
To summarize, if you want one to appear in the js object, four need to appear in the json string.

For other special characters
1. Double quotation mark ("), if the double quotation mark appears correctly, it should be \"
2.n, if you think about it, The correct line breaks required in the json string are , in fact, we first escape the characters in n, and n becomes an ordinary character. When parsed into a js object, n and the previous one (only one left) are interpreted as newlines. The following two are similar to this.
3.r,
4.t,

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
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

如何在Go语言中使用正则表达式转义特殊字符如何在Go语言中使用正则表达式转义特殊字符Jul 13, 2023 am 11:16 AM

如何在Go语言中使用正则表达式转义特殊字符引言:正则表达式是一种强大的字符串匹配工具,在处理文本时非常有用。但是,在某些情况下,我们可能需要在正则表达式中使用一些特殊字符,如"+"、"*"等,这些字符在正则表达式中具有特殊的含义。为了使用这些特殊字符的字面意义,我们需要对它们进行转义。本文将介绍如何在Go语言中使用正则表达式转义特殊字符,并提供代码示例进行说

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

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

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

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

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

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

使用MyBatis中的小于等于转义字符方法是什么?使用MyBatis中的小于等于转义字符方法是什么?Feb 24, 2024 am 11:12 AM

在MyBatis中使用小于等于转义字符是一个常见的需求,在实际开发过程中经常会遇到这样的情况。下面我们将详细介绍如何在MyBatis中使用小于等于转义字符,并提供具体的代码示例。首先,我们需要明确小于等于转义字符在SQL语句中的表示方式。在SQL语句中,小于等于操作符通常以“

聊聊怎么使用Node将Excel转为JSON聊聊怎么使用Node将Excel转为JSONNov 28, 2022 pm 08:02 PM

怎么使用Node将Excel转为JSON?下面本篇文章给大家介绍一下Node中转换Excel成JSON的方法,希望对大家有所帮助!

php怎么将json转化为数组?php怎么将json转化为数组?Jul 23, 2020 pm 04:06 PM

在php中,可以使用json_decode()函数来将json格式数据转化为数组。json_decode()函数可以把json字符串转成对象或数组,默认转成对象;指定第二个参数为一个布尔值true,这样JSON值将被解码为关联数组。

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

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!