Try Django 1.11 项目教程

Try Django 1.11 项目教程

Try-Django-1.11Learn the fundamentals behind one of the most popular web frameworks in the world: Django. We will teach you step-by-step how to implement concepts like Views, Template Rendering, Forms, Saving Data, URL routing, Deployment aka Going Live, and so much more. Django is a web-framework written in Python and runs the backend for many of the internet's most popular websites such as Instagram and Pinterest. Get started today!项目地址:https://gitcode.com/gh_mirrors/tr/Try-Django-1.11

1. 项目的目录结构及介绍

Try-Django-1.11/
├── manage.py
├── trydjango111/
│   ├── __init__.py
│   ├── settings.py
│   ├── urls.py
│   ├── wsgi.py
├── templates/
├── static/
├── requirements.txt
  • manage.py: Django 项目的命令行工具,用于管理项目。
  • trydjango111/: 项目的根包,包含项目的核心配置文件。
    • __init__.py: 标识该目录为一个 Python 包。
    • settings.py: 项目的配置文件,包含数据库配置、静态文件配置等。
    • urls.py: 项目的 URL 路由配置。
    • wsgi.py: 用于部署项目的 WSGI 兼容 Web 服务器入口。
  • templates/: 存放项目的 HTML 模板文件。
  • static/: 存放项目的静态文件,如 CSS、JavaScript 和图片等。
  • requirements.txt: 项目依赖的 Python 包列表。

2. 项目的启动文件介绍

  • manage.py: 这是 Django 项目的主要启动文件。通过该文件可以执行各种 Django 管理命令,如运行开发服务器、创建应用、迁移数据库等。

    使用方法:

    python manage.py runserver
    

    上述命令将启动 Django 开发服务器,默认运行在 http://127.0.0.1:8000/

3. 项目的配置文件介绍

  • settings.py: 这是 Django 项目的主要配置文件,包含以下关键配置项:

    • DEBUG: 是否开启调试模式,开发阶段通常设置为 True
    • ALLOWED_HOSTS: 允许访问项目的主机列表。
    • INSTALLED_APPS: 已安装的应用列表。
    • MIDDLEWARE: 中间件列表,用于处理请求和响应。
    • DATABASES: 数据库配置,默认使用 SQLite 数据库。
    • STATIC_URL: 静态文件的 URL 前缀。
    • TEMPLATES: 模板引擎配置。

    示例配置:

    DEBUG = True
    ALLOWED_HOSTS = []
    INSTALLED_APPS = [
        'django.contrib.admin',
        'django.contrib.auth',
        'django.contrib.contenttypes',
        'django.contrib.sessions',
        'django.contrib.messages',
        'django.contrib.staticfiles',
    ]
    MIDDLEWARE = [
        'django.middleware.security.SecurityMiddleware',
        'django.contrib.sessions.middleware.SessionMiddleware',
        'django.middleware.common.CommonMiddleware',
        'django.middleware.csrf.CsrfViewMiddleware',
        'django.contrib.auth.middleware.AuthenticationMiddleware',
        'django.contrib.messages.middleware.MessageMiddleware',
        'django.middleware.clickjacking.XFrameOptionsMiddleware',
    ]
    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.sqlite3',
            'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
        }
    }
    STATIC_URL = '/static/'
    

通过以上配置,可以确保 Django 项目在开发和部署阶段的正常运行。

Try-Django-1.11Learn the fundamentals behind one of the most popular web frameworks in the world: Django. We will teach you step-by-step how to implement concepts like Views, Template Rendering, Forms, Saving Data, URL routing, Deployment aka Going Live, and so much more. Django is a web-framework written in Python and runs the backend for many of the internet's most popular websites such as Instagram and Pinterest. Get started today!项目地址:https://gitcode.com/gh_mirrors/tr/Try-Django-1.11

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

巫舒姗

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值