gpt4 book ai didi

javascript - 如何从 JSON 中提取值

转载 作者:行者123 更新时间:2023-12-01 02:05:23 25 4
gpt4 key购买 nike

使用node.js 6.10

console.log("returned data1 " + body);
// returns: returned data1 "{'response' : 'Not latest version of file, update not performed'}"

我想提取不是最新版本的文件,未执行更新并将其放入 valueReturned 变量中。我已经尝试过了

    var jsonBody = JSON.parse(body);
var valueReturned = jsonBody["response"];
console.log("logs: " + valueReturned);
// returns: logs: undefined

有谁知道我哪里出错了?

谢谢

最佳答案

您需要一个有效的 JSON 字符串来解析 JSON。

let body = "{ \"response\" : \"Not latest version of file, update not performed\"}";
let jsonBody = JSON.parse(body);
let valueReturned = jsonBody.response;
console.log("logs: " + valueReturned);

关于javascript - 如何从 JSON 中提取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50146589/

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