Django 模型中的新字段不会显示在管理界面或模型表单中

发布于 2024-08-18 06:16:23 字数 306 浏览 5 评论 0原文

我在我的一个应用程序中创建了一个模型,该模型运行良好。但是,我需要添加一个新字段。我这样做了,并使用 manage.py reset 删除表并再次添加它们。这个过程很顺利——新字段出现在数据库中。但是,我无法让该字段显示在管理界面中,也无法显示在我创建的自定义模型表单中。因为我没有给它一个默认值(并且不想也不应该需要),所以我无法使用任何一种方法向数据库中添加行。有什么想法吗?

模型片段:

use_balance = models.BooleanField()

I've created a model in one of my apps which works fine. However, I needed to add a new field. I did this, and used manage.py reset <appname> to drop the tables and add them again. This process went fine - the new field appears in the database. However, I can't get the field to show up in the admin interface, nor in the custom model form I've created. Because I haven't given it a default value (and don't want to, nor should I need to) I can't use either method to add a row into the database. Any ideas?

Model snippet:

use_balance = models.BooleanField()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自找没趣 2024-08-25 06:16:23

你重新启动你的服务器了吗?

Have you restarted your server?

一向肩并 2024-08-25 06:16:23

无论如何,您是否忘记更新您的 ModelAdmin 定义?

By any chance, did you forget to update your ModelAdmin definitions?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文