-
Django documentation?
django 文檔
-
Everything you need to know about Django.
一切你想知道的,有關(guān)django的東西
-
How the documentation is organized?
文檔如何組織的?
-
Django has a lot of documentation. A high-level overview of how it’s organized will help you know where to look for certain things:
django有大量的文檔. 一個(gè)好的概述,將會(huì)幫助你知道到哪兒去找某些用法或特性:
-
Tutorials take you by the hand through a series of steps to create a Web application. Start here if you’re new to Django or Web application development. Also look at the “First steps” below.
教程將通過(guò)幾個(gè)步驟,手把手帶你創(chuàng)建一個(gè)web應(yīng)用.如果你是剛接觸django或者剛接觸web應(yīng)用,請(qǐng)從這里開(kāi)始.當(dāng)然,接下來(lái)請(qǐng)看 "第一步".
-
Topic guides discuss key topics and concepts at a fairly high level and provide useful background information and explanation.
主題指南將在相當(dāng)高的水平上討論關(guān)鍵主題和概念,以及提供有用的背景信息和解釋.
-
Reference guides contain technical reference for APIs and other aspects of Django’s machinery. They describe how it works and how to use it but assume that you have a basic understanding of key concepts.
參考指南包含了django中api的使用參考,以及關(guān)于django運(yùn)轉(zhuǎn)的一些其他知識(shí).它描述了django如何工作以及如何使用它們,當(dāng)然,前提是你對(duì)django的基礎(chǔ)概念已經(jīng)有了基礎(chǔ)的認(rèn)識(shí).
-
How-to guides are recipes. They guide you through the steps involved in addressing key problems and use-cases. They are more advanced than tutorials and assume some knowledge of how Django works.
實(shí)操指南是秘訣. 他們通過(guò)解決關(guān)鍵問(wèn)題的步驟和實(shí)例來(lái)指導(dǎo)我們. 在指導(dǎo)如何使用django上,它比教程更好.
-
-
First steps?
第一步
-
Are you new to Django or to programming? This is the place to start!
你是剛接觸django或者編程么? 這里就是開(kāi)始的地方!
-
From scratch: Overview | Installation
-
Tutorial: Part 1: Requests and responses | Part 2: Models and the admin site | Part 3: Views and templates | Part 4: Forms and generic views | Part 5: Testing | Part 6: Static files | Part 7: Customizing the admin site
教程: 第一部分: 請(qǐng)求和響應(yīng) | 第二部分: 模型和管理界面 | 第三部分: 試圖和模板 | 第四部分: 表單和通用視圖 | 第五部分: 測(cè)試 | 第六部分: 靜態(tài)文件 | 第七部分: 定制管理界面
-
Advanced Tutorials: How to write reusable apps | Writing your first patch for Django
高級(jí)教程: 如何寫(xiě)可重復(fù)用的app | 用django寫(xiě)你的第一個(gè)補(bǔ)丁
-
-
The model layer?
模型層
-
Django provides an abstraction layer (the “models”) for structuring and manipulating the data of your Web application. Learn more about it below:
django為構(gòu)建和操縱web程序, 提供了一個(gè)抽象層, 即模型層.通過(guò)下面了解更多:
-
Models: Introduction to models | Field types | Indexes | Meta options | Model class
模型: 介紹模型 | 字段類型 | 索引 | 元選項(xiàng)(可定義的變量, 如表名, 等, 用于設(shè)置關(guān)于表的相關(guān)信息) | 模型的類
-
QuerySets: Making queries | QuerySet method reference | Lookup expressions
-
Model instances: Instance methods | Accessing related objects
模型實(shí)例: 實(shí)例方法 | 訪問(wèn)相關(guān)對(duì)象
-
Migrations: Introduction to Migrations | Operations reference | SchemaEditor | Writing migrations
遷移(關(guān)于django在數(shù)據(jù)庫(kù)同步和遷移方面的操作): 介紹遷移 | 操作指南 | 圖式-編輯 | 寫(xiě)遷移
-
Advanced: Managers | Raw SQL | Transactions | Aggregation | Search | Custom fields | Multiple databases | Custom lookups | Query Expressions | Conditional Expressions | Database Functions
高級(jí): 管理 | 原始SQL | 事物 | 聚集 | 搜索 | 自定義字段 | 多數(shù)據(jù)庫(kù) | [自定義查找] (https://docs.djangoproject.com/en/1.11/howto/custom-lookups/)| 查詢表達(dá)式 | 條件表達(dá)式 | 數(shù)據(jù)庫(kù)函數(shù)or功能
-
Other: Supported databases | Legacy databases | Providing initial data | Optimize database access | PostgreSQL specific features
其他: 支持的數(shù)據(jù)庫(kù) | 傳統(tǒng)的數(shù)據(jù)庫(kù) | 提供初始數(shù)據(jù) | 優(yōu)化數(shù)據(jù)庫(kù)訪問(wèn) | postgresql的特點(diǎn)
-
-
The view layer?
視圖層
-
Django has the concept of “views” to encapsulate the logic responsible for processing a user’s request and for returning the response. Find all you need to know about views via the links below:
django 視圖的概念是, 用于處理用戶的請(qǐng)求和返回響應(yīng). 最后, 關(guān)于視圖, 你需要了解一下內(nèi)容:
-
The basics: URLconfs | View functions | Shortcuts | Decorators
基礎(chǔ): url配置-urlconfigs | 視圖函數(shù) | 快捷辦法 | 裝飾
-
Reference: Built-in Views | Request/response objects | TemplateResponse objects
參考: 內(nèi)置視圖 | 響應(yīng)/請(qǐng)求 對(duì)象 | 模板響應(yīng)對(duì)象
-
File uploads: Overview | File objects | Storage API | Managing files | Custom storage
文件上傳: 概述 | 文件對(duì)象 | 存儲(chǔ)api | 管理文件 | 自定義存儲(chǔ)
-
Class-based views: Overview | Built-in display views | Built-in editing views | Using mixins | API reference | Flattened index
基于類的視圖: 概述 | 內(nèi)置顯示視圖 | 內(nèi)置編輯視圖 | 混合使用 | api參考 | 扁平的索引
-
Advanced: Generating CSV | Generating PDF
-
Middleware: Overview | Built-in middleware classes
中間件: 概述 | 內(nèi)置中間件
-
-
The template layer?
模板層
-
The template layer provides a designer-friendly syntax for rendering the information to be presented to the user. Learn how this syntax can be used by designers and how it can be extended by programmers:
當(dāng)web應(yīng)用在通過(guò)render響應(yīng)用戶請(qǐng)求時(shí), 模型層提供了一個(gè)設(shè)計(jì)-友好的語(yǔ)法. 學(xué)習(xí)這種語(yǔ)法如何使用以及程序員該如何擴(kuò)展它:
-
The basics: Overview
基礎(chǔ): 概述
-
For designers: Language overview | Built-in tags and filters | Humanization
給設(shè)計(jì)者: 語(yǔ)言概述 | 內(nèi)置的標(biāo)簽和過(guò)濾器 | 人性化
-
For programmers: Template API | Custom tags and filters
給程序員: 模板 API | 自定義標(biāo)簽和過(guò)濾器
-
-
Forms?
表單
-
Django provides a rich framework to facilitate the creation of forms and the manipulation of form data.
django 提供了一個(gè)豐富的框架來(lái)推動(dòng)大家使用表單. 操縱表單數(shù)據(jù).
-
The basics: Overview | Form API | Built-in fields | Built-in widgets
基礎(chǔ): 概述 | 表單api | 內(nèi)置字段 | 內(nèi)置小工具
-
Advanced: Forms for models | Integrating media | Formsets | Customizing validation
高級(jí): 用于模型的表單 | 整合媒體 | 表單-集合 | 定制驗(yàn)證形式
-
-
The development process?
開(kāi)發(fā)過(guò)程
-
Learn about the various components and tools to help you in the development and testing of Django applications:
學(xué)習(xí)各種組件和工具 來(lái)幫助你開(kāi)發(fā)和測(cè)試django項(xiàng)目
-
Settings: Overview | Full list of settings
-
Applications: Overview
app: 概述
-
Exceptions: Overview
異常: 概述
-
django-admin and manage.py: Overview | Adding custom commands
-
Testing: Introduction | Writing and running tests | Included testing tools | Advanced topics
測(cè)試: 介紹 | 編寫(xiě)和運(yùn)行測(cè)試 | 包含測(cè)試工具 | 高級(jí)話題
-
Deployment: Overview | WSGI servers | Deploying static files | Tracking code errors by email
部署: 概述 | wsgi 服務(wù) | 部署靜態(tài)文件 | 郵件跟蹤錯(cuò)誤代碼
-
-
The admin?
超級(jí)管理
-
Find all you need to know about the automated admin interface, one of Django’s most popular features:
關(guān)于django最流行的功能——自動(dòng)化管理界面,你所需要知道的都在下面:
-
Security?
安全
-
Security is a topic of paramount importance in the development of Web applications and Django provides multiple protection tools and mechanisms:
在web開(kāi)發(fā)過(guò)程中, 安全是一個(gè)非常重要的話題, django 提供了多重保護(hù)工具和機(jī)制:
-
Internationalization and localization?
國(guó)際化和本土化
-
Django offers a robust internationalization and localization framework to assist you in the development of applications for multiple languages and world regions:
django提供了一個(gè)強(qiáng)大的國(guó)際化和本土化框架來(lái)幫助你開(kāi)發(fā)可以對(duì)應(yīng)多種語(yǔ)言和地區(qū)的應(yīng)用程序
-
Overview | Internationalization | Localization | Localized Web UI formatting and form input
概述 | 國(guó)際化 | 本土化 | 本土化的web界面格式和表單輸入
-
Time zones
-
-
Performance and optimization?
性能優(yōu)化
-
There are a variety of techniques and tools that can help get your code running more efficiently - faster, and using fewer system resources.
這里有各種各樣的技術(shù)和工具讓你的代碼更加有效的運(yùn)行——更快、占用更少資源
-
Python compatibility?
python 的兼容性
-
Django aims to be compatible with multiple different flavors and versions of Python:
django 致力于被不同python版本兼容
-
Geographic framework?
地理框架
-
GeoDjango intends to be a world-class geographic Web framework. Its goal is to make it as easy as possible to build GIS Web applications and harness the power of spatially enabled data.
GeDjango 打算成為一個(gè)世界級(jí)的地理web框架. 它的目標(biāo)是盡可能簡(jiǎn)單的構(gòu)建 GIS web程序, 并利用空間中被啟用的數(shù)據(jù).
-
Common Web application tools?
通用web應(yīng)用程序工具
-
Django offers multiple tools commonly needed in the development of Web applications:
django 提供了多種在web開(kāi)發(fā)中需要的工具
-
Authentication: Overview | Using the authentication system | Password management | Customizing authentication | API Reference
認(rèn)證: 概述 | 使用認(rèn)證系統(tǒng) | 密碼管理 | 自定義驗(yàn)證 | API 參考
-
-
Other core functionalities?
其他核心功能
-
Learn about some other core functionalities of the Django framework:
學(xué)習(xí)django框架中的其他核心功能
-
The Django open-source project?
django 開(kāi)源想項(xiàng)目
-
Learn about the development process for the Django project itself and about how you can contribute:
學(xué)習(xí)django發(fā)展過(guò)程, 以及你該如何貢獻(xiàn):
-
Community: How to get involved | The release process | Team organization | The Django source code repository | Security policies | Mailing lists
社區(qū): 如何參與 | 釋放過(guò)程 | 團(tuán)隊(duì)組織 | django 源代碼庫(kù) | 安全政策 | 郵件列表
-
Design philosophies: Overview
設(shè)計(jì)哲學(xué): 概述
-
Documentation: About this documentation
文檔: 關(guān)于這個(gè)文檔
-
Third-party distributions: Overview
第三方分布: 概述
-
Django over time: API stability | Release notes and upgrading instructions | Deprecation Timeline
django 隨時(shí)間推移: API 穩(wěn)定性 | 發(fā)布說(shuō)明和升級(jí)說(shuō)明 | 棄用時(shí)間線
-
django document 翻譯
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
相關(guān)閱讀更多精彩內(nèi)容
- PLEASE READ THE FOLLOWING APPLE DEVELOPER PROGRAM LICENSE...
- 人生到了一個(gè)境界,讀書(shū)不是為了應(yīng)付外界需求,不是為人,是為己,是為了充實(shí)自己,使自己成為一個(gè)明白事理的人,使自己的...
- 音樂(lè)播放器通常需要獲取歌曲的專輯、作者、標(biāo)題、年代等信息,將這些信息顯示到UI界面上,Android 提供統(tǒng)一的接...
- 我要一杯水的溫度, 你給了一個(gè)暖暖的春天。 我要一朵花, 你給了滿園薔薇的夏。 我要一滴水, 你給了整個(gè)海洋。 我...