在使用django的modelform的时候,修改表单,图片在form表单显示的是一个链接。显示缩略图如下
第一步:
from django.forms.widgets import ClearableFileInput
class ImageWidget(ClearableFileInput):
template_with_initial = (
'%(initial_text)s: '
'%(clear_template)s
%(input_text)s: %(input)s'
)
template_with_clear = ''
ClearableFileInput
继承它,重写里面一个属性。
第二步:使用这个样式组件
class XXXForm(forms.ModelForm):
class Meta:
model = XXX
exclude = ['XXX', 'is_XXX']
widgets = {'backend_image':ImageWidget}