response_obj = json.loads(response_obj_str) if response_obj['res'] != "None": for response_obj in response_obj: parentCode_data.append(response_obj["res"][0]["code"]) return parentCode_data
时间: 2024-04-03 20:36:15 浏览: 94
这段代码的功能是将一个 JSON 格式的字符串转化为 Python 对象,并且获取其中的 "res" 字段,如果该字段不为 "None",则遍历其中的元素,将其中每一个元素的 "res" 字段中的第一个元素的 "code" 字段添加到一个列表中,并且返回该列表。需要注意的是,该代码中的 return 语句不应该在 for 循环内部,否则只会返回列表中的第一个元素。
阅读全文