Django Models的数据类型(二)
2007-04-22 20:48
下面是第二部分,基本类型大概就全了。
|
ImageField
|
|
upload_to
|
|
|
height_field
|
可选
|
|
width_field
|
可选
|
|
需要验证,即Python Imaging Library
|
|
IntegerField
|
|
|
|
IPAddressField
|
|
|
|
NullBooleanField
|
|
相当于设置了null=True的BooleanField
|
|
PhoneNumberField
|
|
美国电话号码格式
|
|
PositiveIntegerField
|
|
正整数字段
|
|
PositiveSmallIntegerField
|
|
小的正整数字段,取决于数据库特性
|
|
SlugField
|
|
maxlength(50)
|
可选
|
|
db_index
|
默认为True
|
|
prepopulate_from
|
可选,用于指示在admin表单中的可选值
|
|
短标签,仅包含字母、数字、下划线、连字符,一般用于url
|
|
SmallIntegerField
|
|
小整数字段,依赖于数据库特性
|
|
TimeField
|
|
auto_now
|
可选,每次动作都会更新
|
|
auto_now _add
|
可选,一次产生
|
|
|
|
URLField
|
verify_exists(True),检查URL可用性
|
|
|
USStateField
|
|
两个字母表示的美国州名字段
|
|
XMLField
|
schema_path,必选
|
|
|
posted @ 2008-10-04 16:38
楚暮四 阅读(32)
评论(0) 编辑 收藏 网摘 所属分类:
python