1. django 模型models 常用字段
1、models.AutoField
自增列 = int(11)
如果没有的话,默认会生成一个名称为 id 的列
如果要显式的自定义一个自增列,必须设置primary_key=True。
2、models.CharField
字符串字段
必须设置max_length参数
3、models.BooleanField
布尔类型=tinyint(1)
不能为空,可添加Blank=True
4、models.ComaSeparatedIntegerField
用逗号分割的数字=varchar
继承CharField,所以必须 max_lenght 参数
5、models.DateField
日期类型 date
DateField.auto_now:保存时自动设置该字段为现在日期,最后修改日期
DateField.auto_now_add:当该对象面必填项验证有关的
3、primary_key = False
主键,对AutoField设置主键后,就会代替原来的自增 id 列
4、auto_now 和 auto_now_add
auto_now 自动创建—无论添加或修改,都是当前操作的时间
auto_now_add 自动创建—永远是创建时的时间
5、choices
一个二维的元组被用作choices,如果这样定义,Django会select box代替普通的文本框,
并且限定choices的值是元组中的值
GENDER_CHOICE = (
(u’M’, u’Male’),
(u’F’, u’Female’),
)
gender = models.CharField(max_length=2,choices = GENDER_CHOICE)
6、max_length
字段长度
7、default
默认值
8、verbose_name
Admin中字段的显示名称,如果不设置该参数时,则与属性名。
9、db_column
数据库中的字段名称
10、unique=True
不允许重复
11、db_index = True
数据库索引
12、editable=True
在Admin里是否可编辑
13、error_messages=None
错误提示
14、auto_created=False
自动创建
15、help_text
在Admin中提示帮助信息
16、validators=[]
验证器
17、upload-to
文件上传时的保存上传文件的目录
models.py
# -- coding: utf-8 --
from future import unicode_literals
from django.db import models
class UserInfo(models.Model):
userName = models.CharField(max_length=30) #用户名
passWord = models.CharField(max_length=30) #密码
gendle = models.BooleanField() #性别
birthday = models.DateField() #出生日期
weigth = models.FloatField() #体重
heigth = models.IntegerField() #身高
email = models.EmailField() #邮箱
host = models.GenericIPAddressField() #IP地址
introduce = models.TextField() #个人简介
blog = models.URLField() #博客地址
photo = models.ImageField() #照片
CV = models.FilePathField() #个人简历文件
createDate = models.DateTimeField() #帐号申请时间
执行结果:
3.常见异常处理
ERRORS:
web.UserInfo.photo: (fields.E210) Cannot use ImageField because Pillow is not installed.
HINT: Get Pillow at https://pypi.python.org/pypi/Pillow or run command “pip install Pillow”.
原因:
这是因为使用了ImageField()字段,该字段是直接在数据库中存储图片的,数据库中实际存储时要使用python的Pillow模块对图片进行处理后才能存储进去。因此因需使用pip install Pillow 安装该模块即可解决该报错。
2)
ERRORS:
在执行python manage.py makemigrations 时需要手动选择处理方法:
You are trying to add a non-nullable field ‘CV’ to userinfo without a default; we can’t do that (the database needs something to populate existing rows).
Please select a fix:
Provide a one-off default now (will be set on all existing rows with a null value for this column)
Quit, and let me add a default in models.py
Select an option: 1
Please enter the default value now, as valid Python
The datetime and django.utils.timezone modules are available, so you can do e.g. timezone.now
Type ‘exit’ to exit this prompt
timez(神魔养殖场作者为什么坐牢?《神魔养殖场》的作者黑瞳王之所以会坐牢,是因为作者的小三不满作者离婚后与前妻之间仍有来往,便毒杀发妻,作者包庇小三,又被小三供出毁灭电子证据,判处有期徒刑2年半。)one.now
原因:
这是因为UserInfo数据表中已经有了"userName"和"passWord" 这两个字段,当在新增字段时就会出现这种Warning。是由于django框架在生成SQL语句时发现数据表不为空,担心新增不为Null的字段添加到该表中时,表中以前的数据行在填充这些字段时需要填充的值不明确,所以才会询问用户处理方式。
选1,则会在已存在行中添加null,选2,则会要求在models.py中添加默认值。
在models.py中设置默认值的方法:
host = models.GenericIPAddressField(default = ‘127.0.0.1’)
执行python makemigrations正常,但是执行python migrate 报错,之后再执行无法生效的处理办法