Skip to content

Commit 1fe049a

Browse files
committedMay 24, 2018
更新了第2天的文档
1 parent 064af21 commit 1fe049a

File tree

1 file changed

+40
-33
lines changed

1 file changed

+40
-33
lines changed
 

‎Day31-Day35/Django 2.x实战(02) - 深入模型.md

+40-33
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@
111111
location = models.CharField(max_length=10, db_column='dloc', verbose_name='部门所在地')
112112

113113
class Meta:
114-
115114
db_table = 'tb_dept'
116115

117116

@@ -121,17 +120,17 @@
121120
no = models.IntegerField(primary_key=True, db_column='eno', verbose_name='员工编号')
122121
name = models.CharField(max_length=20, db_column='ename', verbose_name='员工姓名')
123122
job = models.CharField(max_length=10, verbose_name='职位')
124-
mgr = models.IntegerField(null=True, blank=True, verbose_name='主管编号')
123+
mgr = models.ForeignKey('self', on_delete=models.SET_NULL, null=True, blank=True, verbose_name='主管编号')
125124
sal = models.DecimalField(max_digits=7, decimal_places=2, verbose_name='月薪')
126125
comm = models.DecimalField(max_digits=7, decimal_places=2, null=True, blank=True, verbose_name='补贴')
127-
dept = models.ForeignKey(Dept, on_delete=models.PROTECT, verbose_name='所在部门')
126+
dept = models.ForeignKey(Dept, db_column='dno', on_delete=models.PROTECT, verbose_name='所在部门')
128127

129128
class Meta:
130-
131129
db_table = 'tb_emp'
132130

131+
133132
```
134-
> 说明:如果不能理解定义模型类使用的字段类及其属性的含义,可以参考文末字段类、字段属性、元数据选项的说明
133+
> 说明:上面定义模型时使用了字段类及其属性,其中IntegerField对应数据库中的integer类型,CharField对应数据库的varchar类型,DecimalField对应数据库的decimal类型,ForeignKey用来建立多对一外键关联。字段属性primary_key用于设置主键,max_length用来设置字段的最大长度,db_column用来设置数据库中与字段对应的列,verbose_name则设置了Django后台管理系统中该字段显示的名称。如果对这些东西感到很困惑也不要紧,文末提供了字段类、字段属性、元数据选项等设置的相关说明,不清楚的读者可以稍后查看对应的参考指南
135134
136135
5. 通过模型创建数据表。
137136

@@ -155,23 +154,31 @@
155154

156155
### 在后台管理模型
157156

158-
157+
1. 创建超级管理员账号。
158+
2. 登录后台管理系统。
159+
3. 注册模型类。
160+
4. 对模型进行CRUD操作。
161+
5. 注册模型管理类。
159162

160163
### 使用ORM完成模型的CRUD操作
161164

162165
#### 新增
163166

167+
168+
164169
#### 删除
165170

171+
172+
166173
#### 更新
167174

168-
#### 查询
169175

170176

177+
#### 查询
171178

172-
最后,我们通过上面掌握的知识来实现部门展示以及根据部门获取部门对应员工信息的功能。
173179

174180

181+
最后,我们通过上面掌握的知识来实现部门展示以及根据部门获取部门对应员工信息的功能,效果如下图所示,对应的代码可以访问<https://github.com/jackfrued/Python-100-Days/tree/master/Day31-Day35/oa>
175182

176183
### Django模型最佳实践
177184

@@ -203,31 +210,31 @@
203210

204211
Django模型字段类
205212

206-
| 字段类 | 默认小组件 | 说明 |
207-
| --------------------- | ------------------ | ------------------------------------------------------------ |
208-
| AutoField || 自增ID字段 |
209-
| BigIntegerField | NumberInput | 64位有符号整数 |
210-
| BinaryField | | 存储二进制数据的字段,对应Python的bytes类型 |
211-
| BooleanField | CheckboxInput | 存储True或False |
212-
| CharField | TextInput | 长度较小的字符串 |
213-
| DateField | DateInput | 存储日期,有auto_now和auto_now_add属性 |
214-
| DateTimeField | DateTimeInput | 存储日期和日期,两个附加属性同上 |
215-
| DecimalField | TextInput | 存储固定精度小数,有max_digits(有效位数)和decimal_places(小数点后面)两个必要的参数 |
216-
| DurationField | TextInput | 存储时间跨度 |
217-
| EmailField | TextInput | 与CharField相同,可以用EmailValidator验证 |
218-
| FileField | ClearableFileInput | 文件上传字段 |
219-
| FloatField | TextInput | 存储浮点数 |
220-
| ImageField | ClearableFileInput | 其他同FileFiled,要验证上传的是不是有效图像 |
221-
| IntegerField | NumberInput | 存储32位有符号整数。 |
222-
| GenericIPAddressField | TextInput | 存储IPv4或IPv6地址 |
223-
| NullBooleanField | NullBooleanSelect | 存储True、False或null值 |
224-
| PositiveIntegerField | NumberInput | 存储无符号整数(只能存储正数) |
225-
| SlugField | TextInput | 存储slug(简短标注) |
226-
| SmallIntegerField | NumberInput | 存储16位有符号整数 |
227-
| TextField | Textarea | 存储数据量较大的文本 |
228-
| TimeField | TextInput | 存储时间 |
229-
| URLField | URLInput | 存储URL的CharField |
230-
| UUIDField | TextInput | 存储全局唯一标识符 |
213+
| 字段类 | 说明 |
214+
| --------------------- | ------------------------------------------------------------ |
215+
| AutoField |自增ID字段 |
216+
| BigIntegerField |64位有符号整数 |
217+
| BinaryField | 存储二进制数据的字段,对应Python的bytes类型 |
218+
| BooleanField | 存储True或False |
219+
| CharField | 长度较小的字符串 |
220+
| DateField | 存储日期,有auto_now和auto_now_add属性 |
221+
| DateTimeField | 存储日期和日期,两个附加属性同上 |
222+
| DecimalField |存储固定精度小数,有max_digits(有效位数)和decimal_places(小数点后面)两个必要的参数 |
223+
| DurationField |存储时间跨度 |
224+
| EmailField | 与CharField相同,可以用EmailValidator验证 |
225+
| FileField | 文件上传字段 |
226+
| FloatField | 存储浮点数 |
227+
| ImageField | 其他同FileFiled,要验证上传的是不是有效图像 |
228+
| IntegerField | 存储32位有符号整数。 |
229+
| GenericIPAddressField | 存储IPv4或IPv6地址 |
230+
| NullBooleanField | 存储True、False或null值 |
231+
| PositiveIntegerField | 存储无符号整数(只能存储正数) |
232+
| SlugField | 存储slug(简短标注) |
233+
| SmallIntegerField | 存储16位有符号整数 |
234+
| TextField | 存储数据量较大的文本 |
235+
| TimeField | 存储时间 |
236+
| URLField | 存储URL的CharField |
237+
| UUIDField | 存储全局唯一标识符 |
231238

232239
#### 字段属性
233240

0 commit comments

Comments
 (0)