# django.core.exceptions.FieldError: Cannot resolve keyword 'name' into field. Choices are: id, title, content, pub_date

- **ID:** `python/django-query-parameter-error`
- **Domain:** python
- **Category:** data_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

查询中使用了模型不存在的字段名

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.x | active | — | — |

## Workarounds

1. **** (95% success)
   ```
   Article.objects.filter(title='x')
   ```
2. **** (85% success)
   ```
   fields = [f.name for f in Article._meta.get_fields()]
   ```

## Dead Ends

- **** — 数据库表结构未更新，查询仍会失败 (80% fail)
- **** — 字段名不匹配，Django无法解析 (90% fail)
