- 需要注意的是:
- ModelForm 中的Meta 以及 models.Model 中的Meta
- ModelForm 中的Meta继续于ModelFormOption:
- modelForm中的Meta
- class ModelFormOptions(object):
- def __init__(self, options=None):
- self.model = getattr(options, 'model', None)
- self.fields = getattr(options, 'fields', None)
- self.exclude = getattr(options, 'exclude', None)
- self.widgets = getattr(options, 'widgets', None)
model 表示继续类- fileds表示展示项
- exclude表示排除项
- widgets表示工具集FIled类中可以使用
PS:关于django.contrib.admin 中的ModelAdmin
有些属性跟MoldelForm Meta中的属性类似