介绍简单视图(Hello World Equivalent)
让我们创建一个非常简单的视图来响应 html 格式的 Hello World
模板。
-
要做到这一点,请访问
my_project/my_app/views.py
(这里我们将视图函数包含在内)并添加以下视图:from django.http import HttpResponse def hello_world(request): html = "<html><title>Hello World!</title><body>Hello World!</body></html>" return HttpResponse(html)
-
要调用此视图,我们需要在
my_project/my_app/urls.py
中配置 url 模式:from django.conf.urls import url from . import views urlpatterns = [ url(r'^hello_world/$', views.hello_world, name='hello_world'), ]
-
启动服务器:
python manage.py runserver
现在,如果我们点击
http://localhost:8000/hello_world/
,我们的模板(html 字符串)将在我们的浏览器中呈现。