写点什么

Django 报错:"Key 'id' not found in 'xxx'. Choices are: xxx"

用户头像
BigYoung
关注
发布于: 2021 年 01 月 21 日
Django报错:"Key 'id' not found in 'xxx'. Choices are: xxx"

环境:

Python 3.6

Django 2.2

问题:

我在 Django 的admin.py文件中对某个 Models 配置了fields字段,导致查看某个具体数据时,提示:Django "Key 'id' not found in 'xxx'. Choices are: xxx"

导致报错代码:

@admin.register(Category)class CategoryAdmin(admin.ModelAdmin):list_display = ['id','name']fields = ['id','name'] # 这行代码导致的报错
复制代码

原因:

因为字段id设置的自增 ID 键,在数据库中对应的是AUTO_INCREMENT,所以这个字段是不允许编辑的,而fields这个配置设置的就是要展示那些编辑字段,这就导致冲突了,所以才会报错。

解决办法:

把代码改为以下内容就好了

@admin.register(Category)class CategoryAdmin(admin.ModelAdmin):list_display = ['id','name']fields = ['name'] # 这行代码去掉id字段
复制代码

本文首发于 BigYoung 小站http://www.bigyoung.cn

发布于: 2021 年 01 月 21 日阅读数: 24
用户头像

BigYoung

关注

Python工程师/书虫/极客/ 2020.04.22 加入

伸手摘星,即使徒劳无功,也不至于满手泥污。 欢迎大家访问我的BigYoung小站(bigyoung.cn)

评论

发布
暂无评论
Django报错:"Key 'id' not found in 'xxx'. Choices are: xxx"