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 简介 页面中,我们了解到结果应该以 HTML 格式呈现,并且应该在模板中创建,所以让我们来做这件事。

members 文件夹中创建一个名为 templates 的文件夹,并创建一个名为 myfirst.html 的 HTML 文件。

文件结构应该像这样

my_tennis_club
    manage.py
    my_tennis_club/
    members/
        templates/
            myfirst.html

打开 HTML 文件并插入以下内容

my_tennis_club/members/templates/myfirst.html:

<!DOCTYPE html>
<html>
<body>

<h1>Hello World!</h1>
<p>Welcome to my first Django project!</p>

</body>
</html>

修改视图

打开 views.py 文件,并将 members 视图替换为以下内容

my_tennis_club/members/views.py:

from django.http import HttpResponse
from django.template import loader

def members(request):
  template = loader.get_template('myfirst.html')
  return HttpResponse(template.render())

更改设置

为了能够处理比 "Hello World!" 更复杂的内容,我们需要告诉 Django 创建了一个新的应用程序。

这在 my_tennis_club 文件夹中的 settings.py 文件中完成。

查找 INSTALLED_APPS[] 列表,并将 members 应用程序添加如下

my_tennis_club/my_tennis_club/settings.py:

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'members'
]

然后运行以下命令

py manage.py migrate

这将生成以下输出

要执行的操作
  应用所有迁移:admin, auth, contenttypes, sessions
正在运行迁移
  正在应用 contenttypes.0001_initial... OK
  正在应用 auth.0001_initial... OK
  正在应用 admin.0001_initial... OK
  正在应用 admin.0002_logentry_remove_auto_add... OK
  正在应用 admin.0003_logentry_add_action_flag_choices... OK
  正在应用 contenttypes.0002_remove_content_type_name... OK
  正在应用 auth.0002_alter_permission_name_max_length... OK
  正在应用 auth.0003_alter_user_email_max_length... OK
  正在应用 auth.0004_alter_user_username_opts... OK
  正在应用 auth.0005_alter_user_last_login_null... OK
  正在应用 auth.0006_require_contenttypes_0002... OK
  正在应用 auth.0007_alter_validators_add_error_messages... OK
  正在应用 auth.0008_alter_user_username_max_length... OK
  正在应用 auth.0009_alter_user_last_name_max_length... OK
  正在应用 auth.0010_alter_group_name_max_length... OK
  正在应用 auth.0011_update_proxy_permissions... OK
  正在应用 auth.0012_alter_user_first_name_max_length... OK
  正在应用 sessions.0001_initial... OK

(myworld) C:\Users\Your Name\myworld\my_tennis_club>

通过导航到 /my_tennis_club 文件夹并执行以下命令来启动服务器

py manage.py runserver

在浏览器窗口中,在地址栏中输入 127.0.0.1:8000/members/

结果应该看起来像这样



×

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.