(Django) 预填充字段,并禁止编辑
如何将管理中的字段设置为不可编辑并从其他字段预填充?
How can I set a field in admin to be at the same time non-editable and prepopulated from other field ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
django-autoslug 可能会有所帮助。
前任:
django-autoslug might be helpful.
ex:
http://docs.djangoproject .com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.readonly_fields
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.prepopulated_fields
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.readonly_fields
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.prepopulated_fields
据我了解,预填充是为了在管理表单中预填充可编辑字段。如果您希望一个字段的内容根据另一个字段的内容自动生成,那么预填充并不是您想要的。
我通常执行此操作的方法是将字段设置为不可编辑,而不是预先填充它,并重写模型的 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.