《Django 5 By Example》阅读笔记:p237-p338

《Django 5 By Example》学习第11天,p237-p338总结,总计102页。

一、技术总结

1.follow system(关注功能)

表之间的关系有三种:OneToOneField,many-to-one(使用Foreignkey()),ManyToManyField。有时候为了更好的描述对象之间的关系,需要多创建一张中间表:Creating an intermediate model is necessary when you want to store additional information on the relationship, for example, the date when the relationship was created, or a field that describes the nature of the relationship。

例如关注功能:

复制代码
class Contact(models.Model):

    user_from = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, related_name='rel_from_set')

    user_to = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, related_name='rel_to_set')

    created = models.DateTimeField(auto_now_add=True)



    class Meta:

        indexes = [

            models.Index(fields=['-created']),

         ]

        ordering = ['-created']



    def __str__(self):

        return f'{self.user_from.username} follows {self.user_to.name}'

2.monkey patch

p289, You use the add_to_class() method of Django models to monkey patch the User model。monkey patch的意思是:Monkey patch is a technique used to dynamically update the code at runtime without altering the source code。示例:

复制代码
# monkey patch 示例

user_model = get_user_model()

user_model.add_to_class(

    'following',

    models.ManyToManyField('self', through=Contact, symmetrical=False, related_name='followers')

)

注:尽量少用monkey patch。

3.activity stream(活动流)功能

4.contenttypes

p300, contenttypes 的作用:This application can track all models installed in your project and provides a generic interface to interact with your models.

5.denormalization(反规范化)

p315, Denormalization is making data redundant in such a way that it optimizes read performance. For example, you might be copying related data to an object to avoid expensive read queries to the database when retrieving the related data.

6.signal

7.django-debug-toolbar

用于完善debug功能,在界面通过toolbar显示一些统计信息。个人觉得在实际开发中可有可无。

8.使用redi做缓存

使用的 package 名称也叫redis。在实际业务也中经常使用,但是不复杂,掌握常用的方法即可。

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

1.thewart

p292. Usernames, unlike sequential IDs, thwart enumeration attacks by obscuring your data structure.

vt. to stop sth from happing.

2.every once in a while

p327, Redis stores everything in memory, but the data can be persisted by dumping the dataset to disk every once in a while, or by adding each command to a log.

idiom. sometimes, but not regularly. 也写作 every so often。

三、其它

chapter 07 简评:4-7 章是一个完整的项目(bookmarks),建议从第 4 章按顺序阅读到第 7 章,不要跳过某个章节,因为作者的代码是连续,跳过之后项目可能无法运行。

Pycharm(2024.3 Professional Edition) :Settings > Build, Execution, Deployment > Python Debugger新增了一个功能 "Run debugger in server mode",然后 Pycharm 默认是勾选的,导致我在 WSL 使用 debug 启动后一直无法访问。忍了那么久终于可以debug了,气 die! Pycharm,你再这样我明年就不续费了。

四、参考资料

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)

相关推荐
大汉堡玩测试8 分钟前
langfuse测试实战(一): 配置一个简单的项目快速落地
python·测试工具
一位正在转型AI全栈的前端工程师25 分钟前
AI 全栈学习之旅 -Week 8:从单 Agent 到多 Agent 协作:LangGraph 实战与记忆持久化
前端·python
长江后浪博客27 分钟前
Python + YOLOv8 疲劳驾驶 AI 视觉检测入门:从模型训练到 ONNX 实时摄像头检测完整实战
人工智能·python·yolo·疲劳驾驶检测·onnx·yolov8
hhzz1 小时前
【OpenCV 入门到精通 01】认识 OpenCV 与计算机视觉:从零建立全局认知
人工智能·python·opencv·计算机视觉·开源
一马平川的大草原2 小时前
如何实现SVG转Mermaid图
python·svg·格式转换·mermaid
PFFstronger2 小时前
基于 Dify 知识库 + Ollama 大模型,自动生成测试用例并导出 XMind 的完整方案
人工智能·python·测试用例·xmind
SomeBottle2 小时前
【小记】图片托管从又拍云迁移到腾讯云 EO + COS(兼容图片处理参数)
python·计算机网络·学习笔记·对象存储·cdn·折腾
cts6183 小时前
FDE架构师前端选型指南
python
2601_962293793 小时前
【Python教程:自动化处理文件】
python·自动化·编程·文件处理·os模块
禹凕3 小时前
快速幂算法详解与实战
python·算法