千家信息网

Django:The value of 'list_display[3]' refers to 'account_admin', which is not a call

发表于:2025-11-08 作者:千家信息网编辑
千家信息网最后更新 2025年11月08日,初学Django,Django 修改models.py 字段后执行makemigrations报错,报错信息:: (admin.E108) The value of 'list_display[3]'
千家信息网最后更新 2025年11月08日Django:The value of 'list_display[3]' refers to 'account_admin', which is not a call

初学Django,Django 修改models.py 字段后执行makemigrations报错,报错信息:

: (admin.E108) The value of 'list_display[3]' refers to 'account_admin', which is not a callable, an attribute of 'AccountAdmin', or an attribute or method on 'test2.Account'.: (admin.E108) The value of 'list_display[4]' refers to 'password_admin', which is not a callable, an attribute of 'AccountAdmin', or an attribute or method on 'test2.Account'.

第一遇到有点手足无措,搜索了一波,在这里找到了答案。

原来是我在admin.py中定义了AccountAdmin,

修改list_display中的account_admin,password_admin 即可解决,其实报错中的信息已经很明确了。

0