gpt4 book ai didi

javascript - 从 json 字符串中提取某些列和行

转载 作者:行者123 更新时间:2023-11-30 20:14:40 25 4
gpt4 key购买 nike

我从服务器收到这样的 JSON 响应,

{编号:1,text : 'Name City Country\nJohn\n Chicago\nIllinois\nAlbert\nHouston\nTexas '

如果我执行 console.log(response.text);输出是这样的表格形式

Table Image 1

现在我只想要 Name 列和行,输出应该如下所示

Table Image 2

建议我解决这个问题。由于该值是一个字符串,因此我在仅提取所需列时遇到了很多麻烦

最佳答案

我还没有测试过这个,但是像这样的东西应该可以工作:

var jsonData = "{ id : 1, text : 'Name City Country \nJohn \n Chicago \nIllinois \nAlbert \nHouston \nTexas ' }";

var obj1 = jsonData.split('\n');

for(var i= 1; i<obj1.length-2; i=i+3)
{
console.log("Name: " +obj1[i]+", City: "+obj1[i + 1]+", Country: " +obj1[i + 2]);

}

关于javascript - 从 json 字符串中提取某些列和行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52039932/

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