Django工程目录分析

我们使用:

django-admin.py startproject testdj

创建项目:

Django工程目录分析_第1张图片
图片.png

文件分析:

__init__.py : 表示这是一个Python的包。
manage.py : 提供简单化的django-admin.py命令,特别是可以自动运行 DJANGO_SETTINGS_MODULES   和 PYTHONPATH的处理, 而没有这个命令, 处理上面的环境变量是件麻烦的事情。

从这个项目结构图中,可以看到testdj下面还有一层testdj,我们的BASE_DIR是,第一层testdj目录里面。


如果有工程和APP, 那么注意:

aircraftdeMacBook-Pro:TestPython ldl$ tree testdj/
testdj/
├── db.sqlite3
├── manage.py
├── templates
│   ├── base.html
│   ├── ext-1.html
│   ├── hello.html
│   └── index.html
└── testdj
    ├── TestModel
    │   ├── __init__.py
    │   ├── admin.py
    │   ├── apps.py
    │   ├── migrations
    │   │   └── __init__.py
    │   ├── models.py
    │   ├── tests.py
    │   └── views.py
    ├── __init__.py
    ├── __init__.pyc
    ├── helloworld.py
    ├── settings.py
    ├── settings.pyc
    ├── urls.py
    ├── urls.pyc
    ├── view.py
    ├── view.pyc
    ├── wsgi.py
    └── wsgi.pyc

这种是错误的文件目录。

下面的才是正确的:

aircraftdeMacBook-Pro:testpython ldl$ tree testdj/
testdj/
├── TestModel
│   ├── __init__.py
│   ├── __init__.pyc
│   ├── admin.py
│   ├── admin.pyc
│   ├── apps.py
│   ├── migrations
│   │   └── __init__.py
│   ├── models.py
│   ├── models.pyc
│   ├── tests.py
│   └── views.py
├── db.sqlite3
├── manage.py
├── templates
│   ├── base.html
│   ├── ext-1.html
│   ├── hello.html
│   └── index.html
└── testdj
    ├── __init__.py
    ├── __init__.pyc
    ├── helloworld.py
    ├── settings.py
    ├── settings.pyc
    ├── urls.py
    ├── urls.pyc
    ├── view.py
    ├── view.pyc
    ├── wsgi.py
    └── wsgi.pyc

4 directories, 27 files

APP应该与manage.py同级。

5.工程目录分析:

Django工程目录分析_第2张图片
图片.png

你可能感兴趣的:(Django工程目录分析)