Django table顯示所有學生資訊

2021-10-14 04:20:41 字數 1842 閱讀 1335

login.html中的新增a標籤

href

="/student/show/"

>

showa

>

主包中urls新增stu包的path

from django.contrib import admin

from django.urls import path, include

urlpatterns =

[ path(

'admin/'

, admin.site.urls)

, path(

'student/'

, include(

'stu.urls'))

,]

stu包中urls.py新增show頁面的path

# coding=utf-8

from django.conf.urls import url

from django.urls import path

from

.import views

urlpatterns =

[ path(

'', views.index_view)

, path(

'login/'

, views.login_view)

,# t中的login.html的action

path(

'register/'

, views.register_view)

,# t中的login.html的a標籤

path(

'show/'

, views.show_view)

,# t中的login.html的a標籤

# url(r'^$', views.login_view)

]

stu包中views.py中新增函式show_view

def

show_view

(request)

:# 1.查詢student表中的資料

stus = student.objects.

all(

)return render(request,

'show.html'

,)

渲染頁面show.html

lang

="en"

>

>

charset

="utf-8"

>

>

showtitle

>

head

>

>

border

="1"

cellspacing

="0"

>

>

>

no.th

>

>

nameth

>

>

passwordth

>

tr>

>

>

}td>

>

}td>

>

}td>

tr>

table

>

body

>

html

>

實現雙屏顯示 從主顯示器分離所有輔助顯示裝置

devmode 結構中您需要設定為零將 dmfields 中呼叫changedisplaysetting 之前下列標誌的 devmode 條目 dm pelswidth dm pelsheight dm bitsperpel dm position dm displayfrequency dm di...

mysql 顯示所有的資料庫

mysql 顯示所有的資料庫,如下 mysql show databases mysql show tables mysql顯示命令 二 顯示命令 1 顯示資料庫列表。show databases 2 顯示庫中的資料表 use mysql show tables 3 顯示資料表的結構 describ...

Ubuntu 使用 nmcli 顯示網路的所有資訊

nmcli connection modify enp0s3 connection.autoconnect yes ipv4.method auto 立即生效 nmcli connection up enp0s3 general.裝置 wlp1s0 general.型別 wifi general.m...