This question already has an answer here:
这个问题已经有了答案:
- Parse JSON in JavaScript? [duplicate] 16 answers
- 在JavaScript解析JSON吗?(重复)16个答案
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)