gpt4 book ai didi

javascript - JSON 中的 JSON 字符串

转载 作者:可可西里 更新时间:2023-11-01 02:38:32 26 4
gpt4 key购买 nike

我想在 JSON 请求中创建一个 JSON 字符串。这是我的代码,

Fiddle

JS

var x = {
a: 1,
b: 'a sample text',
};

var request = {
t: JSON.stringify(x),
c: 2,
r: 'some text'
};

console.log(request);

谁能帮我转义双引号?

控制台

Object {
t: "{"a":1,"b":"a sample text"}", //This creates a problem, double quotes inside double quotes.
c: 2,
r: "some text"
}

提前致谢。

最佳答案

没有问题。这只是您的 console.log,它通过简单地用 " 分隔来显示所有字符串。

正如您所说,此 request 对象在 JSON 请求中使用,它将在另一次 JSON.stringifyed 中得到有效结果

{"t":"{\"a\":1,\"b\":\"a sample text\"}","c":2,"r":"some text"}

关于javascript - JSON 中的 JSON 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26238796/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com