对于长期使用python写代码的我来说,经常在Python代码中,使用.get
方法来访问嵌套在JSON结构中的值。我们知道JSON(JavaScript Object Notation)是一种常见的数据交换格式,它可以包含嵌套的键值对。但是在我们使用总该如何获取嵌套对象中的值呢?
1、问题背景
在 Python 中,可以使用 .get() 方法从 JSON 对象中获取值。当 JSON 对象中嵌套了其他 JSON 对象时,如何获取嵌套对象中的值呢?
例如,以下 JSON 对象中包含了一个名为 "product" 的嵌套对象,该对象又包含了几个子对象。
代码语言:javascript复制{
"title": "Test prod",
"leafPage": true,
"type": "product",
"product": {
"title": "test product",
"offerPrice": "$19.95",
"offerPriceDetails": {
"amount": 19.95,
"text": "$19.95",
"symbol": "$"
},
"media": [
{
"link": "http://www.test.com/cool.jpg",
"primary": true,
"type": "image",
"xpath": "/html[1]/body[1]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/div[1]/a[1]/img[1]"
}
],
"availability": true
},
"human_language": "en",
"url": "http://www.test.com"
}
如果要获取 "product" 对象中的 "offerPrice" 值,可以使用以下代码:
代码语言:javascript复制entry.get("product").get("offerPrice")
这样就可以获取到 "offerPrice" 的值 "$19.95"。
2、解决方案
但是,如果 JSON 对象中的嵌套对象不是直接使用键值对表示,而是使用数组表示,则获取嵌套对象中的值就会变得更加复杂。
例如,以下 JSON 对象中包含了一个名为 "media" 的嵌套数组,该数组中包含了多个子对象。
代码语言:javascript复制{
"title": "Test prod",
"leafPage": true,
"type": "product",
"product": {
"title": "test product",
"offerPrice": "$19.95",
"offerPriceDetails": {
"amount": 19.95,
"text": "$19.95",
"symbol": "$"
},
"media": [
{
"link": "http://www.test.com/cool.jpg",
"primary": true,
"type": "image",
"xpath": "/html[1]/body[1]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/div[1]/a[1]/img[1]"
},
{
"link": "http://www.test.com/cool2.jpg",
"primary": false,
"type": "image",
"xpath": "/html[1]/body[1]/div[1]/div[3]/div[2]/div[1]/div[1]/div[1]/div[1]/a[2]/img[1]"
}
],
"availability": true
},
"human_language": "en",
"url": "http://www.test.com"
}
如果要获取 "media" 数组中的第一个子对象中的 "link" 值,可以使用以下代码:
代码语言:javascript复制entry.get("product", {}).get("media", [])[0].get("link")
这样就可以获取到第一个子对象的 "link" 值 "http://www.test.com/cool.jpg"。
代码示例
代码语言:javascript复制import json
# 读取 JSON 文件
with open('data.json', 'r') as f:
data = json.load(f)
# 获取 "product" 对象中的 "offerPrice" 值
offer_price = data.get("product", {}).get("offerPrice")
# 获取 "media" 数组中的第一个子对象的 "link" 值
media_link = data.get("product", {}).get("media", [])[0].get("link")
# 打印获取到的值
print("Offer price:", offer_price)
print("Media link:", media_link)
在这个例子中,.get
方法用于安全地获取字典中的值,即使某个键不存在也不会导致程序崩溃。如果嵌套结构中有可能缺少某些键,可以使用.get
方法来避免KeyError
。
请注意,第二个参数是.get
方法的默认值,如果指定键不存在,则返回这个默认值。在这个例子中,我们使用{}
作为默认值,以确保即使嵌套的"address"键不存在,我们仍然可以安全地调用.get("address", {}).get("city")
而不会导致错误。
总的来说只要注意默认值以及语法使用是一点问题没有。如果大家有啥问题可以留言讨论。