gpt4 book ai didi

javascript - google电子表格导出为json文件,如何格式化?

转载 作者:行者123 更新时间:2023-12-03 11:47:29 24 4
gpt4 key购买 nike

我正在遵循的教程可以帮助将我的 Google 电子表格提取到 json 文件 http://blog.pamelafox.org/2013/06/exporting-google-spreadsheet-as-json.html 。但我在一些谷歌电子表格单元格中有一个对象列表。我的电子表格是这样的:screenshot http://www.tianyuwu.com/wp-content/uploads/2014/09/Screen-Shot-2014-09-22-at-11.46.00-PM.png .

我擅长的是制作这样的json文件。

{
"features": "*articles\n*archive\n*video\n*search\n*social",
"data": "*news feeds\n*oroeco team",
"content": "* blog posts\n* analysis\n* screen shots",

}

但我期望的是这样的

  {
"features": "articles","archive","video", "search", "social",
"data": "news feeds","oroeco team",
"content": "* blog posts","analysis", "screen shots",

}

最有效的转换方式是什么?

最佳答案

如果您使用 JavaScript,请尝试以下操作:

json_original = {
"features" : "*articles\n*archive\n*video\n*search\n*social",
"data" : "*news feeds\n*oroeco team",
"content" : "* blog posts\n* analysis\n* screen shots",
}

json_formated = {}
for (var p in json_original) {
json_formated[p] = json_original[p].replace('\n', '').split('*').map(function(x) { return x.trim(); }).filter(function(x) {return x != ''; });
}

关于javascript - google电子表格导出为json文件,如何格式化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25986607/

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