Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Django 创建项目


我的第一个项目

一旦你为你的 Django 项目想出一个合适的名称,比如我的:my_tennis_club,导航到你在文件系统中要存储代码的位置(在虚拟环境中),我将导航到 myworld 文件夹,并在命令提示符中运行以下命令

django-admin startproject my_tennis_club

Django 在我的计算机上创建了一个 my_tennis_club 文件夹,其中包含以下内容

my_tennis_club
    manage.py
    my_tennis_club/
        __init__.py
        asgi.py
        settings.py
        urls.py
        wsgi.py

这些都是具有特定含义的文件和文件夹,你将在本教程的后面学习其中一些,但现在,重要的是要知道这是你的项目的所在位置,你可以开始在其中构建应用程序。


运行 Django 项目

现在你已经有了 Django 项目,你可以运行它,并在浏览器中查看它是什么样子。

导航到 /my_tennis_club 文件夹,并在命令提示符中执行以下命令

py manage.py runserver

这将产生以下结果

使用 StatReloader 监视文件更改
执行系统检查...

系统检查未发现任何问题(0 个被静默)。

你有 18 个未应用的迁移。你的项目可能无法正常工作,直到你应用以下应用的迁移:admin、auth、contenttypes、sessions。
运行 'python manage.py migrate' 来应用它们。
2022 年 10 月 27 日 - 13:03:14
Django 版本 4.1.2,使用设置 'my_tennis_club.settings'
在 http://127.0.0.1:8000/ 启动开发服务器
使用 CTRL-BREAK 退出服务器。

打开一个新的浏览器窗口,在地址栏中输入 127.0.0.1:8000

结果


下一步是什么?

我们有一个 Django 项目!

下一步是在你的项目中创建一个应用。

如果没有应用,你就无法创建使用 Django 的网页。



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.