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 创建应用


什么是应用?

应用是一个 Web 应用程序,在您的项目中具有特定的含义,例如主页、联系表单或成员数据库。

在本教程中,我们将创建一个允许我们在数据库中列出和注册成员的应用。

但首先,让我们创建一个简单的 Django 应用,它显示“Hello World!”。


创建应用

我将我的应用命名为 members

首先导航到您想要存储应用的选定位置,在我的例子中是 my_tennis_club 文件夹,并运行以下命令。

如果服务器仍在运行,并且您无法编写命令,请按 [CTRL] [BREAK] 或 [CTRL] [C] 停止服务器,您应该返回到虚拟环境。

py manage.py startapp members

Django 在我的项目中创建了一个名为 members 的文件夹,其内容如下

my_tennis_club
    manage.py
    my_tennis_club/
    members/
        migrations/
            __init__.py
        __init__.py
        admin.py
        apps.py
        models.py
        tests.py
        views.py

这些都是具有特定含义的文件和文件夹。您将在本教程的后面学习其中大部分内容。

首先,查看名为 views.py 的文件。

在这里,我们收集发送正确响应所需的信息。

您将在下一章中了解有关视图的更多信息。



×

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.