Course Content
Django: First Dive
Django: First Dive
2. Write the First Page
4. Working with Database
View
Now, we will write the Hello, World!
page in the Django project.
First, we need to implement the hello_world
in our new app. Open the app folder, find the views.py
file, and open this file. Look at the file location:
The views.py
file structure:
Note
The suggested
render
function will be described later.
Views should return the HttpResponse
object.
Now, let's write the hello_world_view
function (view).
First, import the HTTP response object:
HttpResponse
object should be imported from django.http
module.
The HttpResponse
object converts the Python string to HTML:
To make our view work with a request, it needs to be connected to a specific URL. Let's see how to do this in the next chapter.
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 1