写点什么

《Django 5 By Example》阅读笔记:p17-p53

作者:codists
  • 2024-11-12
    广东
  • 本文字数:743 字

    阅读完需:约 2 分钟

《Django 5 By Example》学习第 2 天,p17-p53 总结,总计 37 页。

一、技术总结

1.数据库迁移

python manage.py makemigrations blog
python manage.py sqlmigrate blog 0001
python manage.py migrate
复制代码

2.ORM

Django 自带 ORM。

3.view

(1)定义


p42, A Django view is just a Python function that receives a web request and returns a web response.

4.template

了解 tag, variable, filter 即可,不是很理解为什么作者花那么多篇幅介绍。在实际开发中,前后端后前端多使用 Vue 或者 React 进行开发,而不是使用 Django 自带的模板。

二、英语总结(生词:2)

1.facet

p32, Django 5.0 introduces facet filters to the administration site, showcasing facet counts.


(1)facet:face("face, appearance")。


c. one side of a multi-sided object.本意多面物体(例如钻石)的某一面,在这里表示“a specific aspect of information”或者“a specific dimension of information”.


(2)show vs showcase


show 表示“to present sth in a straightforward way”,而 showcase 强调"to present sth in a way that highlight its best qualities."。

2.sake

p51, This schema doesn’t include Django middleware, for the sake of simplicity.


u.purpose or reason. for the sake of = because of。

三、其它

完成 chapter 01 阅读,总体来说跟着书上的代码敲可以保证代码能够正常运行,但引入新的概念的时候缺乏连接性,容易导致读者看完了,也敲完了,但容易忘了。

四、参考资料

1. 编程

(1) Antonio Melé,《Django 5 By Example》:https://book.douban.com/subject/37007362/

2. 英语

(1) Etymology Dictionary:https://www.etymonline.com


(2) Cambridge Dictionary:https://dictionary.cambridge.org


欢迎搜索及关注:编程人(a_codists)

发布于: 刚刚阅读数: 5
用户头像

codists

关注

公众号:编程人 2021-01-14 加入

Life is short, You need Python

评论

发布
暂无评论
《Django 5 By Example》阅读笔记:p17-p53_Python_codists_InfoQ写作社区