我正在尝试从 python 中的嵌套字典中获取值。问题是,当嵌套 dict 的父级不可用时,我希望它返回 None 或 Zero 但我猜我使用 get 的问题是已经返回 Nonetype ,因此当我使用时出现错误:
pl_map.get(item)["ref_rate"]
现在,当 item 在 dict 中可用时,代码可以正常工作,但它会引发 TypeError,因为 NoneType 对象是不可订阅的。
谁能告诉我如何解决这个问题,我已经粘贴了下面代码的某些部分。
基本上 pl_map 是一个嵌套的字典,如下面的函数所示。对于我可能做出的任何遗漏,我深表歉意。
for item in sorted(iwb_map):
for wh in sorted(iwb_map[item]):
#webnotes.msgprint(pl_map.get(item,0))
qty_dict = iwb_map[item][wh]
data.append([item,item_map[item]["description"], wh,
qty_dict.bal_qty,pl_map.get(item)["ref_rate"],0,0,item_map[item]["base_material"],
item_map[item]["quality"], item_map[item]["tool_type"],
item_map[item]["height_dia"], item_map[item]["width"],
item_map[item]["length"], item_map[item]["d1"],
item_map[item]["l1"], item_map[item]["is_rm"],
item_map[item]["brand"]
])
def get_pl_map(filters):
if filters.get("pl"):
conditions = " and price_list_name = '%s'" % filters["pl"]
else:
webnotes.msgprint("Please select a Price List for Valuation Purposes", raise_exception=1)
pl_map_int = webnotes.conn.sql ("""SELECT it.name, p.price_list_name, p.ref_rate
FROM `tabItem` it, `tabItem Price` p
WHERE p.parent = it.name %s
ORDER BY it.name""" % conditions, as_dict=1)
pl_map={}
for d in pl_map_int:
pl_map.setdefault(d.name,d)
#webnotes.msgprint(pl_map)
return pl_map