在节点。js,如何将字符串转换成json?(复制)

时间:2022-09-23 14:00:25

This question already has an answer here:

这个问题已经有了答案:

For example, a HTTP REST API just returned me a JSON, but of course it's a string right now. How can I turn it into a JSON?

例如,一个HTTP REST API刚刚给我返回了一个JSON,但是当然它现在是一个字符串。如何将其转换为JSON?

2 个解决方案

#1


245  

You need to use this function.

你需要使用这个函数。

JSON.parse(yourJsonString);

And it will return the object / array that was contained within the string.

它将返回包含在字符串中的对象/数组。

#2


35  

use the JSON function >

使用JSON函数>

JSON.parse(theString)

JSON.parse(theString)

#1


245  

You need to use this function.

你需要使用这个函数。

JSON.parse(yourJsonString);

And it will return the object / array that was contained within the string.

它将返回包含在字符串中的对象/数组。

#2


35  

use the JSON function >

使用JSON函数>

JSON.parse(theString)

JSON.parse(theString)