作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我从数据流中构造了一个 json 对象,其中每个用户都有一个 json 对象。
{
"entities": {
"description": {
"urls": []
}
},
"utc_offset": -10800,
"id"
"name": "Tom",
"hit_count": 7931,
"private": false,
"active_last_month": false,
"location": "",
"contacted": false,
"lang": "en",
}
目标:我想构建一个 json 文件,其中每个 json 对象都成为文件中带有缩进的一行。当涉及到回读 JSON 文件时,可以使用 with open 来读取它:
例如:跟随文件
[
{
"entities": {
"description": {
"urls": []
}
},
"utc_offset": -10800,
"id"
"name": "Tom",
"hit_count": 7931,
"private": false,
"active_last_month": false,
"location": "",
"contacted": false,
"lang": "en",
}
,
{
"entities": {
"description": {
"urls": []
}
},
"utc_offset": -10500,
"id"
"name": "Mary",
"hit_count": 554,
"private": false,
"active_last_month": false,
"location": "",
"contacted": false,
"lang": "en",
}
]
以上文件可以通过以下方式轻松阅读:
with open(pathToFile) as json_file:
json_data = json.load(json_file)
for key in json_data:
print key["id"]
但目前我正在编写构建 json 文件的方式:
with open(root + filename + '.txt', 'w+') as json_file:
# convert from Python dict-like structure to JSON format
jsoned_data = json.dumps(data)
json_file.write(jsoned_data)
json_file.write('\n')
这给了我
{
indented json data
}
{
indented json data
}
PS:注意括号 []
没有和 ,
一起出现
当您尝试阅读与
相同的代码结构时with open(pathToFile) as json_file:
json_data = json.load(json_file)
for key in json_data:
print key["id"]
你最终得到错误:ValueError:额外数据:第 101 行第 1 列 - 第 1889 行第 1 列
我正在编写一个插件,有一个ajax调用向用户显示数据。 如果用户想在ajax成功时添加一些js?他可以从他的 js 脚本中做到这一点吗,比如定位这个 ajax 成功事件。 例如: $(documen
我有 html 代码,例如 - x 最初插入 div 'insert_calendar_eda_form'。 Javascript代码 calendar_eda_add
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 3 年前。 Improve this qu
我已经使用命令 sudo start myservice 启动了一个 upstart 服务。我想要一种方法,以便稍后我(或任何人)可以检查该服务是否已启动并正在运行。检查它的命令是什么? 最佳答案 找
我是一名优秀的程序员,十分优秀!