 Django 官方教程翻译项目Django 快速安装指南 创建你的第一个 Django 项目, 第一部分 创建你的第一个 Django 项目, 第二部分 创建你的第一个 Django 项目, 第三部分 创建你的第一个 Django 项目, 第四部分 创建你的第一个 Django 项目, 第五部分 创建你的第一个 Django 项目, 第六部分 创建你的第一个 Django 项目, 第七部分 进阶内容:编写可重用的应用 接下来如何学习? 构建,生成于 2018-05-25。 书栈(BookStack.CN) 仅提供文档编写、整理、归类等功能,以及对文档内容的生成和导出工 具。 文档内容由网友们编写和整理,书栈(BookStack.CN) 难以确认文档内容知识点是否错漏。如 果您在阅读文档获取知识的时候,发现文档内容有不恰当的地方,请向我们反馈,让我们共同携手, 将知识准确、高效且有效地传递给每一个人。 同时,如果您在日常生 Django 快速安装指南 创建你的第一个 Django 项目, 第一部分 创建你的第一个 Django 项目, 第二部分 创建你的第一个 Django 项目, 第三部分 创建你的第一个 Django 项目, 第四部分 创建你的第一个 Django 项目, 第五部分 创建你的第一个 Django 项目, 第六部分 创建你的第一个 Django 项目, 第七部分 进阶内容:编写可重用的应用 接下来如何学习?0 码力 | 103 页 | 1.86 MB | 1 年前3 Django 官方教程翻译项目Django 快速安装指南 创建你的第一个 Django 项目, 第一部分 创建你的第一个 Django 项目, 第二部分 创建你的第一个 Django 项目, 第三部分 创建你的第一个 Django 项目, 第四部分 创建你的第一个 Django 项目, 第五部分 创建你的第一个 Django 项目, 第六部分 创建你的第一个 Django 项目, 第七部分 进阶内容:编写可重用的应用 接下来如何学习? 构建,生成于 2018-05-25。 书栈(BookStack.CN) 仅提供文档编写、整理、归类等功能,以及对文档内容的生成和导出工 具。 文档内容由网友们编写和整理,书栈(BookStack.CN) 难以确认文档内容知识点是否错漏。如 果您在阅读文档获取知识的时候,发现文档内容有不恰当的地方,请向我们反馈,让我们共同携手, 将知识准确、高效且有效地传递给每一个人。 同时,如果您在日常生 Django 快速安装指南 创建你的第一个 Django 项目, 第一部分 创建你的第一个 Django 项目, 第二部分 创建你的第一个 Django 项目, 第三部分 创建你的第一个 Django 项目, 第四部分 创建你的第一个 Django 项目, 第五部分 创建你的第一个 Django 项目, 第六部分 创建你的第一个 Django 项目, 第七部分 进阶内容:编写可重用的应用 接下来如何学习?0 码力 | 103 页 | 1.86 MB | 1 年前3
 Django、Vue 和Element UI 前后端原理论述后端搭建流程 安装相关包->创建工程->后端依赖(pipenv)创建虚拟环境->后端服务配置启动->后 端创建子应用->后端 Rest Framework->数据库配置 简要说明: 安装相关包:在开始之前,首先需要安装 Python 和 pip,然后安装 Django 等相关包, 可以使用 pip 命令来安装。 创建工程:使用 Django 的命令行工具创建 Django 项目,例如:django-admin startproject projectname。 后端依赖(pipenv)创建虚拟环境:建议使用 pipenv 来创建和管理虚拟环境,以便 隔离项目的依赖和环境。 后端服务配置启动:在虚拟环境下,通过 Django 的 manage.py 启动服务,例如:python manage.py runserver。 后端创建子应用:根据项目的需要,可以创建多个子应用(app)来管理不同的功能 模块。 后端 Rest 项目的数据库连接,通常使用 MySQL 作为后端数据库, 可以在 settings.py 中进行配置。 2.2 前端搭建流程 创建工程(模板)->前端依赖(npm install )->前端服务配置启动 简要说明: 创建工程(模板):可以使用 Vue 脚手架工具或其他模板工具来创建 Vue 项目的初始 结构。 前端依赖(npm install):在项目目录下执行 npm install 命令,安装项目所需的前端0 码力 | 61 页 | 6.84 MB | 1 年前3 Django、Vue 和Element UI 前后端原理论述后端搭建流程 安装相关包->创建工程->后端依赖(pipenv)创建虚拟环境->后端服务配置启动->后 端创建子应用->后端 Rest Framework->数据库配置 简要说明: 安装相关包:在开始之前,首先需要安装 Python 和 pip,然后安装 Django 等相关包, 可以使用 pip 命令来安装。 创建工程:使用 Django 的命令行工具创建 Django 项目,例如:django-admin startproject projectname。 后端依赖(pipenv)创建虚拟环境:建议使用 pipenv 来创建和管理虚拟环境,以便 隔离项目的依赖和环境。 后端服务配置启动:在虚拟环境下,通过 Django 的 manage.py 启动服务,例如:python manage.py runserver。 后端创建子应用:根据项目的需要,可以创建多个子应用(app)来管理不同的功能 模块。 后端 Rest 项目的数据库连接,通常使用 MySQL 作为后端数据库, 可以在 settings.py 中进行配置。 2.2 前端搭建流程 创建工程(模板)->前端依赖(npm install )->前端服务配置启动 简要说明: 创建工程(模板):可以使用 Vue 脚手架工具或其他模板工具来创建 Vue 项目的初始 结构。 前端依赖(npm install):在项目目录下执行 npm install 命令,安装项目所需的前端0 码力 | 61 页 | 6.84 MB | 1 年前3
 Django 1.8.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note: At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget 8.20.dev20180306181007 BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 1685 页 | 6.01 MB | 1 年前3 Django 1.8.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note: At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget 8.20.dev20180306181007 BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 1685 页 | 6.01 MB | 1 年前3
 Django 1.8.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 2454 页 | 2.85 MB | 1 年前3 Django 1.8.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 2454 页 | 2.85 MB | 1 年前3
 Django 2.1.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note: At this time 3D support is limited to the PostGIS spatial backend. 4 Terry A. Slocum, Robert B. McMaster, Fritz C and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 1910 页 | 6.49 MB | 1 年前3 Django 2.1.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note: At this time 3D support is limited to the PostGIS spatial backend. 4 Terry A. Slocum, Robert B. McMaster, Fritz C and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 1910 页 | 6.49 MB | 1 年前3
 Django 1.11.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note: At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 1878 页 | 6.40 MB | 1 年前3 Django 1.11.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note: At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 1878 页 | 6.40 MB | 1 年前3
 Django 1.10.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note: At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 1817 页 | 6.19 MB | 1 年前3 Django 1.10.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note: At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 1817 页 | 6.19 MB | 1 年前3
 Django 1.11.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 2747 页 | 2.67 MB | 1 年前3 Django 1.11.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 2747 页 | 2.67 MB | 1 年前3
 Django 1.10.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 2538 页 | 2.59 MB | 1 年前3 Django 1.10.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 2538 页 | 2.59 MB | 1 年前3
 Django 2.1.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 2790 页 | 2.71 MB | 1 年前3 Django 2.1.x Documentationspatial backends that support it, it may be set to 3 for three-dimensional support. Note At this time 3D support is limited to the PostGIS spatial backend. geography GeometryField.geography If set to True and edit geographic data on a visual map. Note that none of the currently available widgets supports 3D geometries, hence geometry fields will fallback using a simple Textarea widget for such data. Widget purposes (default is False). BaseGeometryWidget.supports_3d Indicates if the widget supports edition of 3D data (default is False). BaseGeometryWidget.template_name The template used to render the map widget0 码力 | 2790 页 | 2.71 MB | 1 年前3
共 32 条
- 1
- 2
- 3
- 4














