Files
nexus/wiki/concepts/Django.md
2026-04-17 08:38:12 +08:00

30 lines
610 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
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]]