首頁 > 軟體

Python實現簡易的圖書管理系統

2022-03-10 13:00:59

本文範例為大家分享了Python實現簡易圖書管理系統的具體程式碼,供大家參考,具體內容如下

首先展示一下圖書管理系統的首頁:

這是圖書管理系統的釋出圖書頁面:

最後是圖書管理系統的圖書詳情頁已經圖書進行刪除的管理頁。

該圖書管理系統為練習階段所做,能夠實現圖書詳情的查詢、圖書的新增、圖書的刪除功能。以下附原始碼:

views.py檔案中程式碼如下:

from django.shortcuts import render,redirect,reverse
from django.db import connection


# 因為在以下幾個檢視函數中都會用到cursor物件,所以在這裡就定義為一個函數。
def get_cursor():
    return connection.cursor()


def index(request):
    cursor = get_cursor()
    cursor.execute("select * from db01")
    books = cursor.fetchall()
    # 此時的books就是一個包含多個元組的元組
    # 列印進行檢視
    # print(books)
    # ((1, '三國演義', '羅貫中'), (2, '西遊記', '羅貫中'), (3, '水滸傳', '施耐庵'))

    # 此時我們如果想要在瀏覽器中進行顯示的話,就要傳遞給DTL模板.
    # 可以直接不用定義中間變數context,直接將獲取到的元組,傳遞給render()函數中的引數context,
    # 就比如,這種情況就是定義了一箇中間變數。
    # context = {
    #     'books':books
    # }

    # 以下我們直接將獲取到的元組傳遞給render()函數。
    return render(request,'index.html',context={'books':books})


def add_book(request):
    # 因為DTL模板中是採用post請求進行提交資料的,因此需要首先判斷資料是以哪種方式提交過來的
    # 如果是以get請求的方式提交的,就直接返回到釋出圖書的檢視,否則的話,就將資料新增到資料庫表中
    # 一定要注意:此處的GET一定是提交方式GET.不是一個函數get()
    # 否則的話,會造成,每次點選「釋出圖書」就會新增一條資料資訊全為None,None
    if request.method == "GET":
        return render(request,'add_book.html')
    else:
        name = request.POST.get('name')
        author = request.POST.get('author')
        cursor = get_cursor()
        # 在進行獲取name,author時,因為二者在資料庫中的型別均為字串的型別,
        # 所以在這裡,就需要使用單引號進行包裹,執行以下語句,就可以將資料插入到資料庫中了。
        cursor.execute("insert into db01(id,name,author) values(null ,'%s','%s')" % (name,author))
        # 返回首頁,可以使用重定向的方式,並且可以將檢視函數的url名進行反轉。
        return redirect(reverse('index'))


def book_detail(request,book_id):
        cursor = get_cursor()
        # 將提交上來的資料與資料庫中的id進行對比,如果相符合,就會返回一個元組
        # (根據id的唯一性,只會返回一個元組)
        # 在這裡只獲取了name,auhtor欄位的資訊
        cursor.execute("select id,name,author from db01 where id=%s" % book_id)
        # 可以使用fetchone()進行獲取。
        book = cursor.fetchone()
        # 之後拿到這個圖書的元組之後,就可以將它渲染到模板中了。
        return render(request,'book_detail.html',context={'book':book})


def del_book(request):
    # 判斷提交資料的方式是否是post請求
    if request.method == "POST":
        # 使用POST方式獲取圖書的book_id,
        book_id = request.POST.get('book_id')
        # 將獲取的圖書的book_id與資料庫中的id資訊進行比較
        cursor = get_cursor()
        # 注意:此處刪除的資訊不能寫明屬性,否者的話,會提交資料不成功。
        # cursor.execute("delete id,name,author from db01 where id = '%s'" % book_id)
        cursor.execute("delete from db01 where id=%s" % book_id)
        return redirect(reverse('index'))
    else:
        raise RuntimeError("提交資料的方式不是post請求")

因為各個頁面的header部分都是相同的。所以在這裡採用模板繼承的方式,進行實現模板結構的優化。

其中父模板base.html程式碼如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>圖書管理系統</title>
    <link rel="stylesheet" href="{% static 'index.css' %}">
</head>
<body>
<header>
    <nav>
        <ul class="nav">
            <li><a href="/">首頁</a></li>
            <li><a href="{% url 'add' %}">釋出圖書</a></li>
        </ul>
    </nav>
</header>
{% block content %}

{% endblock %}
<footer>

</footer>
</body>
</html>

首頁index.html模板中程式碼如下:

{% extends 'base.html' %}


{% block content %}
    <table>
        <thead>
        <tr>
            <th>序號</th>
            <th>書名</th>
            <th>作者</th>
        </tr>
        </thead>
        <tbody>
        {% for book in books %}
            <tr>
                <td>{{ forloop.counter }}</td>
                <td><a href="{% url 'detail' book_id=book.0 %}">{{ book.1 }}</a></td>
                <td>{{ book.2 }}</td>
            </tr>
        {% endfor %}

        </tbody>
    </table>
{% endblock %}

釋出圖書模板add_book.html中的程式碼如下:

{% extends 'base.html' %}


{% block content %}
{#  其中,這個action表示的當前的這個表單內容,你要提交給那個檢視進行接收,#}
{#    在這裡我們提交給當前檢視add_book()進行處理資料,就不用寫了  #}
{#  而method方法是採用哪種方式進行提交表單資料,常用的有get,post,在這裡採用post請求。  #}
    <form action="" method="post">
    <table>
        <tr>
            <td>書名:</td>
            <td><input type="text" name="name"></td>
        </tr>
        <tr>
            <td>作者:</td>
            <td><input type="text" name="author"></td>
        </tr>
        <tr>
            <td></td>
            <td><input type="submit" value="提交" name="sub"></td>
        </tr>
    </table>
    </form>
{% endblock %}

在urls.py中檢視函數與url進行適當的對映:

from django.urls import path
from front import views

urlpatterns = [
    path('', views.index, name = 'index'),
    path('add/', views.add_book, name = 'add'),
    path('book/detail/<int:book_id>/', views.book_detail, name = 'detail'),
    path('book/del/',views.del_book, name = 'del'),
]

並且需要注意的是:在settings.py檔案中需要關閉csrf的驗證。

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    # 'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

並且在settings.py檔案中,新增載入靜態檔案的路徑變數

STATICFILES_DIRS = [
    os.path.join(BASE_DIR,'static')
]

並且設定pycharm與mysql資料庫連線的資訊:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'db01',
        'USERNAME': 'root',
        'PASSWORD': 'root',
        'HOST': '127.0.0.1',
        'PORT': '3306'
    }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com