gpt4 book ai didi

javascript - 如何从 json 文件中检索所有字段?

转载 作者:太空宇宙 更新时间:2023-11-04 03:31:32 25 4
gpt4 key购买 nike

我只想检索字段名称而不是它们的值。

我当前的代码是:

    app.get("/api/borough_all_fields", function(req, res){
// set the type of content in the response
res.writeHead(200, {'Content-Type': 'application/json'});

var borFld = null;

// what to put in here?

// add the results to an array
respJson["results"] = [ borFld ];
res.end( JSON.stringify( respJson ) );
});

另外如何指定字段名称并返回所有记录的值?例如,指定 GSS_code 并返回所有值,仅针对 gss 代码及其名称?

最佳答案

您需要传递正确的 json 路径。

var borFld = Object.keys(json.features[0].properties); 

如果数组中有多个对象,那么您需要在数组上运行 for 循环并传递上面的行,它将返回所需的结果。

关于javascript - 如何从 json 文件中检索所有字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36839089/

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