Django 文档 -- 记录我的Django学习之旅

我的学习之旅

执行查询:https://docs.djangoproject.com/zh-hans/3.1/topics/db/queries/
执行原生 SQL 查询:https://docs.djangoproject.com/zh-hans/3.1/topics/db/sql/
QuerySet API 参考:https://docs.djangoproject.com/zh-hans/3.1/ref/models/querysets/#std:fieldlookup-istartswith
模型:https://docs.djangoproject.com/zh-hans/3.1/topics/db/models/
模型字段参考:https://docs.djangoproject.com/zh-hans/3.1/ref/models/fields/#model-field-types
多对多关联:https://docs.djangoproject.com/zh-hans/3.1/topics/db/examples/many_to_many/
查询表达式:https://docs.djangoproject.com/zh-hans/3.1/ref/models/expressions/
Python Django,模型,查询数据库。get()、all()、filter()、exclude()、order_by():https://blog.csdn.net/houyanhua1/article/details/84944010?utm_source=app&app_version=4.5.2
聚合:https://docs.djangoproject.com/zh-hans/3.1/topics/db/aggregation/#aggregation-ordering-interaction
数据库:https://docs.djangoproject.com/zh-hans/3.1/ref/databases/
配置:https://docs.djangoproject.com/zh-hans/3.1/ref/settings/#std:setting-CONN_MAX_AGE
迁移:https://docs.djangoproject.com/zh-hans/3.1/topics/migrations/#data-migrations
发送邮件:https://docs.djangoproject.com/zh-hans/3.1/topics/email/#topic-email-file-backend
管理文件:https://docs.djangoproject.com/zh-hans/3.1/topics/files/
staticfiles 应用:https://docs.djangoproject.com/zh-hans/3.1/ref/contrib/staticfiles/
管理静态文件(比如图片、JavaScript、CSS):https://docs.djangoproject.com/zh-hans/3.1/howto/static-files/#serving-uploaded-files-in-development
部署静态文件:https://docs.djangoproject.com/zh-hans/3.1/howto/static-files/deployment/
django-admin 和 manage.py可用命令:https://docs.djangoproject.com/zh-hans/3.1/ref/django-admin/#django-admin-migrate
Django中的用户认证:https://docs.djangoproject.com/zh-hans/3.1/topics/auth/
初识 Django:https://docs.djangoproject.com/zh-hans/3.1/intro/overview/
多对一关联:https://docs.djangoproject.com/zh-hans/3.1/topics/db/examples/many_to_one/
请求和响应对象:https://docs.djangoproject.com/zh-hans/3.1/ref/request-response/#django.http.HttpResponse
模板:https://docs.djangoproject.com/zh-hans/3.1/topics/templates/
Django FAQ:https://docs.djangoproject.com/zh-hans/3.1/faq/
编写你的第一个 Django 应用,第 1 部分:https://docs.djangoproject.com/zh-hans/3.1/intro/tutorial01/
编写你的第一个 Django 应用,第 2 部分:https://docs.djangoproject.com/zh-hans/3.1/intro/tutorial02/
关联对象参考:https://docs.djangoproject.com/zh-hans/3.1/ref/models/relations/
编写你的第一个 Django 应用,第 3 部分:https://docs.djangoproject.com/zh-hans/3.1/intro/tutorial03/
URL调度器:https://docs.djangoproject.com/zh-hans/3.1/topics/http/urls/
django.urls functions for use in URLconfs:https://docs.djangoproject.com/zh-hans/3.1/ref/urls/#django.urls.path
编写你的第一个 Django 应用,第 4 部分:https://docs.djangoproject.com/zh-hans/3.1/intro/tutorial04/
Built-in template tags and filters:https://docs.djangoproject.com/zh-hans/3.1/ref/templates/builtins/#std:templatetag-for
通用显示视图:https://docs.djangoproject.com/zh-hans/3.1/ref/class-based-views/generic-display/#django.views.generic.list.ListView
基于类的视图:https://docs.djangoproject.com/zh-hans/3.1/topics/class-based-views/
Django 模板语言:https://docs.djangoproject.com/zh-hans/3.1/ref/templates/language/#template-inheritance
编写你的第一个 Django 应用,第 5 部分:https://docs.djangoproject.com/zh-hans/3.1/intro/tutorial05/
Django 中的测试:https://docs.djangoproject.com/zh-hans/3.1/topics/testing/
编写并运行测试:https://docs.djangoproject.com/zh-hans/3.1/topics/testing/overview/
测试工具:https://docs.djangoproject.com/zh-hans/3.1/topics/testing/tools/#django.test.Client
进阶测试主题:https://docs.djangoproject.com/zh-hans/3.1/topics/testing/advanced/
编写你的第一个 Django 应用,第 6 部分:https://docs.djangoproject.com/zh-hans/3.1/intro/tutorial06/
编写你的第一个 Django 应用,第 7 部分:https://docs.djangoproject.com/zh-hans/3.1/intro/tutorial07/
Django 管理站点:https://docs.djangoproject.com/zh-hans/3.1/ref/contrib/admin/
进阶指南:如何编写可重用程序:https://docs.djangoproject.com/zh-hans/3.1/intro/reusable-apps/
Django 文档:https://docs.djangoproject.com/zh-hans/3.1/
使用 Django:https://docs.djangoproject.com/zh-hans/3.1/topics/
下一步看什么:https://docs.djangoproject.com/zh-hans/3.1/intro/whatsnext/

猜你喜欢

转载自blog.csdn.net/m0_46629123/article/details/113949515