本文实例讲述了django框架forms组件用法。分享给大家供大家参考,具体如下:
在django中forms组件有其强大的功能,里面集合和众多的函数和方法:下面来看一下它的源码
"""
Form classes
"""
from __future__ import unicode_literals
import copy
from collections import OrderedDict
from django.core.exceptions import NON_FIELD_ERROR
本文实例讲述了django框架ModelForm组件用法。分享给大家供大家参考,具体如下:
ModelForm组件是django中一个非常强大的组件,其功能主要有
一 校验字段
ModelForm组件的主要格式为:
继承组件
from django import forms
class UserModelForm(forms.ModelForm):
指定表
model = models.UserInfo
指定要显示的字段
\nfields='__all__' #显示所有,常用的方式