首頁 > 軟體

Django資料庫(SQlite)基本入門使用教學

2022-07-06 18:01:10

1:建立工程

django-admin startproject mysite

建立完成後,工程目錄結構如下:

manage.py ----- Django專案裡面的工具,通過它可以呼叫django shell和資料庫等。

settings.py ---- 包含了專案的預設設定,包括資料庫資訊,偵錯標誌以及其他一些工作的變數。

urls.py ----- 負責把URL模式對映到應用程式。

2:建立blog應用

python manage.py startapp blog

完成後,會在專案中生成一個blog的資料夾 

3:資料庫操作 

初始化資料庫:

python 自帶SQLite資料庫,Django支援各種主流的資料庫,這裡我們首先使用SQLite。

如果使用其它資料庫請在settings.py檔案中設定。資料庫預設的設定為:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    }
}

 使用預設的資料設定來初始化資料庫:

命令執行完成後,會生成一些資料表:

 Django自帶有一個WEB 後臺,下面建立WEB後臺的使用者名稱與密碼:

python manage.py createsuperuser

注意⚠️:密碼不能與使用者名稱相似,密碼不能純數位 。

 接下來我們使用上面建立的賬號密碼登入後臺試試。要登入後臺,必須在settings.py檔案中將上面建立的APP也就是blog新增進來:

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

注意後面必須要有個逗號!

啟動django容器:

python manage.py runserver

預設使用的WEB地址為http://127.0.0.1,埠為8000,使用該地址與埠存取首頁:

 下面存取django的後臺:http://127.0.0.1/admin

建立一張UseInfo表,並建立欄位:

現在我們開啟blog目錄下的models.py檔案,這是我們定義blog資料結構的地方。開啟mysite/blog/models.py 檔案進行修改:

from django.db import models
 
 
# Create your models here.
class Demo(models.Model):
    car_num = models.CharField(max_length=32)
    park_name = models.CharField(max_length=32)
    jinru_Date = models.CharField(max_length=32)
    chuqu_Date = models.CharField(max_length=32)
    time = models.CharField(max_length=32)

命令列執行:

python manage.py makemigrations
python manage.py migrate

從上圖中可以看出,Django預設會以APP名為資料表字首,以類名為資料表名!

建立的欄位如下圖:

4.在blog_demo表中新增資料:

Django是在views.py檔案中,通過匯入models.py檔案來建立資料的:

from django.shortcuts import render
 
# Create your views here.
 
from blog import models  # 匯入blog模組
from django.shortcuts import HttpResponse
 
def db_handle(request):
    # 新增資料
    models.Demo.objects.create(car_num='陝E-BV886', park_name='中醫院', jinru_Date='2022-02-05',
                                   chuqu_Date='2022-02-06', time='1')
    return HttpResponse('OK')

 下面我們設定路由,以便讓瀏覽器能夠存取到views.py檔案:

from blog import views
 
urlpatterns = [
    path('admin/', admin.site.urls),
    path(r'db_handle', views.db_handle),
]

 下面我們來存取http://127.0.0.1/db_handle

檢視資料庫是否建立成功:

 上面就是建立表資料,也可以通過字典的格式來建立表資料:

def db_handle(request):
    dic = {car_num='陝E-BV886', park_name='中醫院', jinru_Date='2022-02-05',chuqu_Date='2022-02-06', time='1'}
    models.Demo.objects.create(**dic)
    return HttpResponse('OK')

刪除表資料:

views.py檔案如下:

def db_handle(request):
 
    #刪除表資料
    models.Demo.objects.filter(id=1).delete()
    return HttpResponse('OK')

 操作方法同上,在瀏覽器中執行一遍,資料中的id=1的資料即被刪除:

修改表資料: 

def db_handle(request):
    # 修改表資料
    models.Demo.objects.filter(id=2).update(time=18)  
    return HttpResponse('OK')

資料的查詢:

為了讓查詢出來的資料更加直觀地顯示出來,這裡我們將使用Django的模板功能,讓查詢出來的資料在WEB瀏覽器中展示出來

在templates目錄下新建一個t1.html的檔案,內容如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Django運算元據庫</title>
    <link type="text/css" href="/static/base.css" rel="external nofollow"  rel="external nofollow"  rel="stylesheet" />
</head>
<body>
    <table border="1">
        <tr>
            <th>車牌號</th>
            <th>停車場名</th>
            <th>入場時間</th>
            <th>出場時間</th>
            <th>停車時間</th>
        </tr>
        {% for item in li %}
        <tr>
            <td>{{ item.car_num }}</td>
            <td>{{ item.park_name }}</td>
            <td>{{ item.jinru_Date }}</td>
            <td>{{ item.chuqu_Date }}</td>
            <td>{{ item.time }}</td>
         </tr>
        {% endfor %}
</body>
</html>

views.py檔案查詢資料,並指定呼叫的模板檔案,內容如下:

def db_handle(request):
        user_list_obj = models.Demo.objects.all()
        return render(request, 't1.html', {'li': user_list_obj})

注意:由於這裡是在工程下面的templates目錄下建立的模板,而不是在blog應用中建立的模板,上面views.py檔案中呼叫的t1.html模板,執行時會出現找不到t1.html模板的錯誤,為了能找到mysite/templates下的模板檔案,我們還需要在settings.py檔案設定模板的路徑:

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],  # 設定模板路徑
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

下面就可以在瀏覽器中檢視:

引入JS,CSS等靜態檔案:

在mysite目錄下新建一個static目錄,將JS,CSS檔案都放在此目錄下!並在settings.py檔案中指定static目錄:

STATIC_URL = '/static/'
STATICFILES_DIRS = (
    os.path.join(BASE_DIR, 'static'),
)

表單提交資料:

在Django中要使用post方式提交表單,需要在settings.py組態檔中將下面一行的內容給註釋掉:

# 'django.middleware.csrf.CsrfViewMiddleware',

提交表單(這裡仍然使用了t1.html):

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Django運算元據庫</title>
    <link type="text/css" href="/static/base.css" rel="external nofollow"  rel="external nofollow"  rel="stylesheet" />
</head>
<body>
    <table border="1">
        <tr>
            <th>車牌號</th>
            <th>停車場名</th>
            <th>入場時間</th>
            <th>出場時間</th>
            <th>停車時間</th>
        </tr>
        {% for item in li %}
        <tr>
            <td>{{ item.car_num }}</td>
            <td>{{ item.park_name }}</td>
            <td>{{ item.jinru_Date }}</td>
            <td>{{ item.chuqu_Date }}</td>
            <td>{{ item.time }}</td>
         </tr>
        {% endfor %}
    </table>
    <form action="/db_handle" method="post">
         <p><input name="car_num" /></p>
         <p><input name="park_name" /></p>
         <p><input name="jinru_Date" /></p>
         <p><input name="chuqu_Date" /></p>
         <p><input name="time" /></p>
         <p><input type="submit" value="submit" /></p>
     </form>
</body>
</html>

寫入資料庫(views.py):

def db_handle(request):
        if request.method == "POST":
                 models.Demo.objects.create(car_num=request.POST['car_num'],park_name=request.POST['park_name'],jinru_Date=request.POST['jinru_Date'],chuqu_Date=request.POST['chuqu_Date'],time=request.POST['time'])
        user_list_obj = models.Demo.objects.all()
        return render(request, 't1.html', {'li': user_list_obj})

提交資料後,如下圖:

總結

到此這篇關於Django資料庫(SQlite)基本入門使用教學的文章就介紹到這了,更多相關Django資料庫SQlite使用內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


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