How to use Python Django's generic views and error views?

WBOY
Release: 2023-05-08 21:49:07
forward
1162 people have browsed it

Define the general view

Modify the AuthorInfo class in the book/models.py code. If it is consistent, there is no need to modify it

class AuthorInfo(models.Model):
    id = models.CharField(max_length=30, verbose_name="身份证号", primary_key=True)
    name = models.CharField(max_length=20, verbose_name="姓名")
    telephone = models.CharField(max_length=20, verbose_name="联系方式")
    age = models.IntegerField(verbose_name="年龄", default=30)
    sex = models.CharField(max_length=2, verbose_name="性别", default="男")

    def __str__(self):
        return self.name
Copy after login

inbook/views.py Create a new AuthorListView function under the file

from book.models import AuthorInfo
from django.views.generic.list import ListView

class AuthorListView(ListView):
    model = AuthorInfo
    template_name = "list.html"
    context_object_name = "my_author"
Copy after login

How to use Python Djangos generic views and error views?

## in

book/urls.py The urlpatterns Create a new route in the list

path('author/', views.AuthorListView.as_view())
Copy after login

How to use Python Djangos generic views and error views?

New

templates/list.html File

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
<ul>
    {% for item in my_author %}
    <li>{{ item.name }}</li>
    {% endfor %}
</ul>
</body>
</html>
Copy after login

Access http://127.0.0.1:8000/book/authorlist/

If you cannot access the page, please check the

urlpatterns list in the chapter1/urls.py file Does it contain the route of book

How to use Python Djangos generic views and error views?

If there is no error and the page is blank, please check whether the database contains data. The following is how to add sample data Code

INSERT INTO book_authorinfo (id, name, telephone, age, sex) VALUES
(&#39;a001&#39;, &#39;Alice&#39;, &#39;13812345678&#39;, 25, &#39;F&#39;),
(&#39;a002&#39;, &#39;Bob&#39;, &#39;13987654321&#39;, 30, &#39;M&#39;),
(&#39;a003&#39;, &#39;Charlie&#39;, &#39;13611112222&#39;, 40, &#39;M&#39;),
(&#39;a004&#39;, &#39;David&#39;, &#39;13533334444&#39;, 20, &#39;M&#39;),
(&#39;a005&#39;, &#39;Eve&#39;, &#39;13755556666&#39;, 35, &#39;F&#39;);
Copy after login

can be executed here

How to use Python Djangos generic views and error views?

If there is no problem, you will see the author information

How to use Python Djangos generic views and error views?

Define error view template

Modify

chapter1/settings.py File

DEBUG = False

ALLOWED_HOSTS = [&#39;*&#39;]
Copy after login

How to use Python Djangos generic views and error views?

New

templates/404 .html file

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>此页面未找到</title>
</head>
<body>
    <h3>自定义的404页面</h3>
    <p>您访问的页面不存在</p>
</body>
</html>
Copy after login
When entering the undefined routing URL, the webpage written above will be displayed

How to use Python Djangos generic views and error views?

The above is the detailed content of How to use Python Django's generic views and error views?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!