架构简洁之道
- conway’s law https://zh.wikipedia.org/wiki/康威定律
- 第七章SRP原则,一个模块对一类行为者负责
- 我的思考:一类行为者,可能指的是用户后台模块开发都对他们负责,而后台模块对管理员负责
- 外部参考: https://blog.csdn.net/xxscj/article/details/93194482
Django
- from django.db.models import F from artist.models import Blog, Entry, Author
- 词汇记录 modulo 模数 % double underscore notion 双下划线 retrieve 检索 explicit form 显式 wildcard 通配符 escape 转义
- https://docs.djangoproject.com/zh-hans/3.2/ref/models/querysets/#queryset-api-reference
- timedelta https://docs.python.org/3/library/datetime.html#datetime.timedelta
- MySQL 求某个字段最小值 http://c.biancheng.net/mysql/min.html
- MySQL 两个字段直接相加 https://blog.csdn.net/yaojuns/article/details/25808999,换名字用 as newname
- MySQL 查找最后两条数据 https://blog.csdn.net/u013276277/article/details/80568121
- 词汇记录 percent sign 百分号 intuitively 直观地
- MySQL 修改字段中某一列的值 https://www.cnblogs.com/shenchanglu/p/11977896.html
- 今日进度: JSON Field https://docs.djangoproject.com/en/3.2/topics/db/queries/#querying-jsonfield
学习方法总结:
- 以后每天统计进度直接放链接定位的位置,方便第二天重新开始
- 数据库查询的标准模式:数据查询和MySQL数据对比