gpt4 book ai didi

python - Django 模型继承。隐藏或删除字段

转载 作者:太空狗 更新时间:2023-10-29 18:27:07 27 4
gpt4 key购买 nike

我想从一些第 3 方代码继承模型类。我不会使用某些字段,但希望我的客户能够在管理员中编辑模型。最好的办法是对管理员隐藏它们,还是我可以首先阻止创建它们?

此外 - 如果需要其中一个不需要的字段,我该怎么办?我的第一个想法是重写保存方法并输入一个默认值。

最佳答案

您可以控制在管理中可编辑的字段。

来自 Django 文档:

If you want a form for the Author model that includes only the name and title fields, you would specify fields or exclude like this:

class AuthorAdmin(admin.ModelAdmin):
fields = ('name', 'title')

class AuthorAdmin(admin.ModelAdmin):
exclude = ('birth_date',)

http://docs.djangoproject.com/en/dev/ref/contrib/admin/

关于python - Django 模型继承。隐藏或删除字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/611691/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com