你如何在 django 中加载自定义字段
Posted
技术标签:
【中文标题】你如何在 django 中加载自定义字段【英文标题】:How do you load a custom field in django 【发布时间】:2015-05-11 10:55:01 【问题描述】:注意:这与这个问题的答案密切相关: django admin - add custom form fields that are not part of the model
在 Django 中,可以创建自定义 ModelForms,其中包含与任何模型中的特定数据库字段无关的“rouge”字段。
在以下代码示例中,有一个名为“extra_field”的自定义字段。它出现在模型实例的管理页面中,可以在保存方法中访问,但似乎没有“加载”方法。
如何在管理页面加载之前加载带有数据的“extra_field”?
# admin.py
class YourModelForm(forms.ModelForm):
extra_field = forms.CharField()
def load(..., obj):
# This method doesn't exist.
# extra_field = obj.id * random()
def save(self, commit=True):
extra_field = self.cleaned_data.get('extra_field', None)
return super(YourModelForm, self).save(commit=commit)
class Meta:
model = YourModel
class YourModelAdmin(admin.ModelAdmin):
form = YourModelForm
fieldsets = (
(None,
'fields': ('name', 'description', 'extra_field',),
),
)
@vishnu 的源代码
【问题讨论】:
【参考方案1】:覆盖表单的__init__
方法并设置字段的initial
属性:
class YourModelForm(forms.ModelForm):
extra_field = forms.CharField()
def __init__(self, *args, **kwargs):
super(YourModelForm, self).__init__(*args, **kwargs)
initial = '%s*rnd' % self.instance.pk if self.instance.pk else 'new'
self.fields['extra_field'].initial = initial
【讨论】:
以上是关于你如何在 django 中加载自定义字段的主要内容,如果未能解决你的问题,请参考以下文章