ModelForm的使用

在上一章节中介绍了直接继承forms.Form来写forms,如果一个数据模型中有很多字段,虽然复制黏贴也会写到手抽筋的时候

一、在forms.py中同样可以继承ModelForm来直接关联整个模型,再根据你需要显示字段

class UploadImageForm(forms.ModelForm):
    """
    定义用户上传图片的form
    """

    class Meta:
        model = UserProfileModel
        fields = ['image']

results matching ""

    No results matching ""