PSNbst commited on
Commit
f2555e6
·
verified ·
1 Parent(s): c341f98

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -38,9 +38,12 @@ def get_sub_categories(furry_data, top_category):
38
 
39
  def get_species_list(furry_data, top_category, sub_category):
40
  if top_category in furry_data and sub_category in furry_data[top_category]:
41
- # 从嵌套结构中提取 Name 字段
42
  species = furry_data[top_category][sub_category]
43
- return [item["Name"] for item in species]
 
 
 
 
44
  return []
45
 
46
  ##############################################################################
 
38
 
39
  def get_species_list(furry_data, top_category, sub_category):
40
  if top_category in furry_data and sub_category in furry_data[top_category]:
 
41
  species = furry_data[top_category][sub_category]
42
+ # 检查 species 是否是列表,并且每个元素是否有 "Name" 字段
43
+ if isinstance(species, list) and all(isinstance(item, dict) and "Name" in item for item in species):
44
+ return [item["Name"] for item in species]
45
+ else:
46
+ print(f"[DEBUG] Unexpected structure for species: {species}")
47
  return []
48
 
49
  ##############################################################################