Auto-sync: 2026-04-17 08:37

This commit is contained in:
2026-04-17 08:38:12 +08:00
parent 6caa1c2f47
commit a0a48bd334
247 changed files with 6577 additions and 3061 deletions

30
wiki/concepts/Django.md Normal file
View File

@@ -0,0 +1,30 @@
---
title: "Django"
type: concept
tags: [python, web, framework]
---
## Definition
Django 是一个高级 Python Web 框架,鼓励快速开发和简洁实用的设计原则。由 Python 编写,强调代码复用和模块化。
## Core Features
- ORM对象关系映射系统
- 自动管理后台Django Admin
- 表单处理
- 用户认证系统
- RSS 聚合框架
## Use Cases
- Web 应用开发
- RESTful API 构建
- 内容管理系统
- 数据分析平台
## Aliases
- Django Web Framework
- Django Framework
## Related Concepts
- [[Django-Admin]]
- [[Django-REST-Framework]]
- [[Python]]