{
  "id": "python/django-query-parameter-error",
  "signature": "django.core.exceptions.FieldError: Cannot resolve keyword 'name' into field. Choices are: id, title, content, pub_date",
  "signature_zh": "字段错误：无法解析关键字'name'，可选字段为：id, title, content, pub_date",
  "regex": "django\\.core\\.exceptions\\.FieldError:\\ Cannot\\ resolve\\ keyword\\ 'name'\\ into\\ field\\.\\ Choices\\ are:\\ id,\\ title,\\ content,\\ pub_date",
  "domain": "python",
  "category": "data_error",
  "subcategory": null,
  "root_cause": "查询中使用了模型不存在的字段名",
  "root_cause_type": "generic",
  "root_cause_zh": "filter或exclude中使用了错误的字段名，与模型定义不匹配",
  "versions": [
    {
      "version": "3.x",
      "introduced": null,
      "deprecated": null,
      "removed": null,
      "behavior_change": null,
      "status": "active"
    }
  ],
  "os_specific": {},
  "dead_ends": [
    {
      "action": "",
      "why_fails": "数据库表结构未更新，查询仍会失败",
      "fail_rate": 0.8,
      "condition": "",
      "sources": []
    },
    {
      "action": "",
      "why_fails": "字段名不匹配，Django无法解析",
      "fail_rate": 0.9,
      "condition": "",
      "sources": []
    }
  ],
  "workarounds": [
    {
      "action": "",
      "success_rate": 0.95,
      "how": "Article.objects.filter(title='x')",
      "condition": "",
      "sources": []
    },
    {
      "action": "",
      "success_rate": 0.85,
      "how": "fields = [f.name for f in Article._meta.get_fields()]",
      "condition": "",
      "sources": []
    }
  ],
  "workarounds_zh": [],
  "transition_graph": {
    "leads_to": [],
    "preceded_by": [],
    "frequently_confused_with": []
  },
  "official_doc_url": null,
  "official_doc_section": null,
  "error_code": null,
  "verification_tier": "ai_generated",
  "confidence": 0.84,
  "fix_success_rate": 0.8,
  "resolvable": "true",
  "first_seen": "2024-09-02",
  "last_confirmed": "2025-01-01",
  "last_updated": "2025-01-01",
  "evidence_count": 0,
  "tags": [],
  "locale": "en",
  "aliases": []
}