(Django) 预填充字段,并禁止编辑

发布于 2024-09-09 04:44:51 字数 33 浏览 0 评论 0原文

如何将管理中的字段设置为不可编辑并从其他字段预填充?

How can I set a field in admin to be at the same time non-editable and prepopulated from other field ?

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

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

发布评论

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

评论(3

述情 2024-09-16 04:44:51

django-autoslug 可能会有所帮助。

前任:

from autoslug.fields import AutoSlugField

class FooModel(models.Model):
    title = models.CharField(max_length=200)
    pub_date = models.DateField(auto_now_add=True)
    slug = AutoSlugField(populate_from='title', unique_with='pub_date__month')

django-autoslug might be helpful.

ex:

from autoslug.fields import AutoSlugField

class FooModel(models.Model):
    title = models.CharField(max_length=200)
    pub_date = models.DateField(auto_now_add=True)
    slug = AutoSlugField(populate_from='title', unique_with='pub_date__month')
夜空下最亮的亮点 2024-09-16 04:44:51

据我了解,预填充是为了在管理表单中预填充可编辑字段。如果您希望一个字段的内容根据另一个字段的内容自动生成,那么预填充并不是您想要的。

我通常执行此操作的方法是将字段设置为不可编辑,而不是预先填充它,并重写模型的 save() 方法以根据需要从其他字段获取值。

对于自动生成独特的 slug,Ashok 的建议是可行的方法。

From what I understand, prepopulate is there to prepopulate an editable field in the admin form. If you want to have one field's content automatically generated based on another's, then prepopulate is not what you want.

The way I usually do this is by setting the field to be non-editable, not prepopulating it, and overriding the model's save() method to get the value from the other field as necessary.

For automatic unique slug generation, Ashok's suggestion is the way to go.

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