- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章python3.6+django2.0开发一套学员管理系统由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
1.在pycharm中新建project demo1 添加app01 点击create按钮完成新建 。
2.在demo项目目录下新建目录static,并在settings.py中追加代码:
1
|
STATICFILES_DIRS
=
(os.path.join(BASE_DIR,
'static'
),)
|
3.在setting.py中添加模板路径:
1
2
3
4
5
6
7
8
9
10
11
12
|
TEMPLATES
=
[
{
'BACKEND'
:
'...'
,
'DIRS'
: [os.path.join(BASE_DIR,
'templates'
),],
'APP_DIRS'
: ...,
'OPTIONS'
: {
'context_processors'
: [
...
],
},
},
]
|
4.学员管理系统数据库设计:
在app01/model.py目录下建立 班级、老师、学生 、老师与班级关联表 四张表:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
from
django.db
import
models
# Create your models here.
class
Classes(models.Model):
'''
班级表
'''
title
=
models.CharField(max_length
=
32
)
a
=
models.ManyToManyField(
'Teachers'
)
class
Teachers(models.Model):
'''
老师表
'''
name
=
models.CharField(max_length
=
32
)
class
Students(models.Model):
username
=
models.CharField(max_length
=
32
)
age
=
models.IntegerField()
gender
=
models.BooleanField()
cs
=
models.ForeignKey(Classes,on_delete
=
models.CASCADE)
|
在终端Terminal 项目目录下执行数据表更新命令:
1
2
|
python manage.py makemigrations
python manage.py migrate
|
至此生成了四张数据表,可以在pycharm中,点开右上角的Database面板,然后将项目中templates目录下边的db.sqlite3鼠标拖拽到Database面板下,对新创建的数据表进行查看.
5.学员管理系统之班级管理:
为了方便分别操作班级、老师、学生相关的业务,将app01目录下的views.py 删掉,在app01目录下新建目录views,并在views目录下 新建classes.py teachers.py students.py.
1.在classes.py 中写 get_classes add_classes del_classes edit_classes四个函数,完成对 班级数据 的增删改查:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
from
django.shortcuts
import
render,redirect
from
app01
import
models
def
get_classes(request):
cls_list
=
models.Classes.objects.
all
()
return
render(request,
'get_classes.html'
,{
'cls_list'
:cls_list})
def
add_classes(request):
if
request.method
=
=
'GET'
:
return
render(request,
'add_classes.html'
)
elif
request.method
=
=
'POST'
:
title
=
request.POST.get(
'title'
,'')
models.Classes.objects.create(title
=
title)
return
redirect(
'/classes.html'
)
def
del_classes(request):
nid
=
request.GET.get(
'nid'
,'')
models.Classes.objects.
filter
(
id
=
nid).delete()
return
redirect(
'/classes.html'
)
def
edit_classes(request):
if
request.method
=
=
"GET"
:
nid
=
request.GET.get(
'nid'
, '')
obj
=
models.Classes.objects.get(
id
=
nid)
return
render(request,
'edit_classes.html'
,{
'obj'
:obj})
elif
request.method
=
=
"POST"
:
nid
=
request.POST.get(
'nid'
,'')
title
=
request.POST.get(
'xxoo'
,'')
models.Classes.objects.
filter
(
id
=
nid).update(title
=
title)
return
redirect(
'/classes.html'
)
|
2.在urls.py 中配置url路由: 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from
django.contrib
import
admin
from
django.urls
import
path
from
app01.views
import
classes,students,teachers
urlpatterns
=
[
path(
'admin/'
, admin.site.urls),
path(
'classes.html'
, classes.get_classes),
path(
'add_classes.html'
, classes.add_classes),
path(
'del_classes.html'
, classes.del_classes),
path(
'edit_classes.html'
, classes.edit_classes),
# path('teachers.html', teachers.get_teachers),
# path('students.html', students.get_studernts),
]
|
3.在template目录下建立所需的html页面文件:
get_classes.html 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
style
>
tr td{ border:1px solid #000;text-align:center;}
</
style
>
<
meta
charset
=
"UTF-8"
>
<
title
>Title</
title
>
</
head
>
<
body
>
<
div
>
<
table
>
<
thead
>
<
tr
>
<
th
>ID</
th
> <
th
>名称</
th
> <
th
>操作</
th
>
</
tr
>
</
thead
>
<
tbody
>
{% for row in cls_list %}
<
tr
>
<
td
>{{ row.id }}</
td
>
<
td
>{{ row.title }}</
td
>
<
td
><
a
href
=
"/del_classes.html?nid={{ row.id }}"
rel
=
"external nofollow"
rel
=
"external nofollow"
>删除</
a
>
|<
a
href
=
"/edit_classes.html?nid={{ row.id }}"
rel
=
"external nofollow"
rel
=
"external nofollow"
>编辑</
a
>
</
td
>
</
tr
>
{% endfor %}
</
tbody
>
</
table
>
</
div
>
<
div
><
a
href
=
"/add_classes.html"
rel
=
"external nofollow"
rel
=
"external nofollow"
>添加</
a
> </
div
>
</
body
>
</
html
>
|
add_classes.html 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
title
>Title</
title
>
</
head
>
<
body
>
<
form
action
=
"/add_classes.html"
method
=
"post"
>
{% csrf_token %}
<
input
type
=
"text"
name
=
"title"
>
<
input
type
=
"submit"
value
=
"提交"
>
</
form
>
</
body
>
</
html
>
|
edit_classes.html 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
title
>Title</
title
>
</
head
>
<
body
>
<
form
method
=
"post"
action
=
"/edit_classes.html"
>
{% csrf_token %}
<
input
type
=
"hidden"
name
=
"nid"
value
=
"{{ obj.id }}"
>
<
input
type
=
"text"
name
=
"xxoo"
value
=
"{{ obj.title }}"
>
<
input
type
=
"submit"
value
=
"提交"
>
</
form
>
</
body
>
</
html
>
|
6.学员管理系统之学员管理: 1.在students.py 中写 get_students add_students del_students edit_students 四个函数,完成对 学生数据 的增删改查:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
from
django.shortcuts
import
render,redirect
from
app01
import
models
def
get_students(request):
stu_list
=
models.Students.objects.
all
()
return
render(request,
'get_students.html'
,{
'stu_list'
:stu_list})
def
add_students(request):
if
request.method
=
=
'GET'
:
cs_list
=
models.Classes.objects.
all
()
return
render(request,
'add_students.html'
,{
'cs_list'
:cs_list})
elif
request.method
=
=
'POST'
:
u
=
request.POST.get(
'username'
,'')
a
=
request.POST.get(
'age'
,'')
g
=
request.POST.get(
'gender'
,'')
c
=
request.POST.get(
'cs'
,'')
models.Students.objects.create(
username
=
u,
age
=
a,
gender
=
g,
cs_id
=
c
)
return
redirect(
'/students.html'
)
def
del_students(request):
nid
=
request.GET.get(
'nid'
, '')
models.Students.objects.
filter
(
id
=
nid).delete()
return
redirect(
'/students.html'
)
def
edit_students(request):
if
request.method
=
=
"GET"
:
nid
=
request.GET.get(
'nid'
, '')
obj
=
models.Students.objects.get(
id
=
nid)
cs_list
=
models.Classes.objects.
all
()
return
render(request,
'edit_students.html'
,{
'obj'
:obj,
'cs_list'
:cs_list})
elif
request.method
=
=
"POST"
:
nid
=
request.POST.get(
'nid'
,'')
u
=
request.POST.get(
'username'
, '')
a
=
request.POST.get(
'age'
, '')
g
=
request.POST.get(
'gender'
, '')
c
=
request.POST.get(
'cs'
, '')
models.Students.objects.
filter
(
id
=
nid).update(
username
=
u,
age
=
a,
gender
=
g,
cs_id
=
c)
return
redirect(
'/students.html'
)
|
2.在urls.py 中配置url路由: 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
from
django.contrib
import
admin
from
django.urls
import
path
from
app01.views
import
classes,students,teachers
urlpatterns
=
[
path(
'admin/'
, admin.site.urls),
path(
'classes.html'
, classes.get_classes),
path(
'add_classes.html'
, classes.add_classes),
path(
'del_classes.html'
, classes.del_classes),
path(
'edit_classes.html'
, classes.edit_classes),
path(
'students.html'
, students.get_students),
path(
'add_students.html'
, students.add_students),
path(
'del_students.html'
, students.del_students),
path(
'edit_students.html'
, students.edit_students),
# path('teachers.html', teachers.get_teachers),
]
|
3.在template目录下建立所需的html页面文件:
get_students.html 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<!DOCTYPE html>
<html lang
=
"en"
>
<head>
<style>
tr td{ border:
1px
solid
#000;text-align:center;}
<
/
style>
<meta charset
=
"UTF-8"
>
<title>Title<
/
title>
<
/
head>
<body>
<div>
<table>
<thead>
<tr>
<th>
ID
<
/
th>
<th>姓名<
/
th>
<th>年龄<
/
th>
<th>性别<
/
th>
<th>班级<
/
th>
<th>操作<
/
th>
<
/
tr>
<
/
thead>
<tbody>
{
%
for
row
in
stu_list
%
}
<tr>
<td>{{ row.
id
}}<
/
td>
<td>{{ row.username }}<
/
td>
<td>{{ row.age }}<
/
td>
<td>{{ row.gender }}<
/
td>
<td>{{ row.cs.title }}<
/
td>
<td><a href
=
"/del_students.html?nid={{ row.id }}"
rel
=
"external nofollow"
rel
=
"external nofollow"
>删除<
/
a>
|<a href
=
"/edit_students.html?nid={{ row.id }}"
rel
=
"external nofollow"
rel
=
"external nofollow"
>编辑<
/
a>
<
/
td>
<
/
tr>
{
%
endfor
%
}
<
/
tbody>
<
/
table>
<
/
div>
<div><a href
=
"/add_students.html"
rel
=
"external nofollow"
rel
=
"external nofollow"
>添加<
/
a> <
/
div>
<
/
body>
<
/
html>
|
add_students 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
title
>Title</
title
>
</
head
>
<
body
>
<
h1
>添加用户</
h1
>
<
form
method
=
"post"
action
=
"/add_students.html"
>
{% csrf_token %}
<
p
><
input
type
=
"text"
name
=
"username"
placeholder
=
"用户名"
></
p
>
<
p
><
input
type
=
"text"
name
=
"age"
placeholder
=
"年龄"
></
p
>
<
p
>
男<
input
type
=
"radio"
name
=
"gender"
value
=
"1"
>
女<
input
type
=
"radio"
name
=
"gender"
value
=
"0"
>
</
p
>
<
p
>
<
select
name
=
"cs"
>
{% for row in cs_list %}
<
option
value
=
"{{ row.id }}"
>{{ row.title }}</
option
>
{% endfor %}
</
select
>
</
p
>
<
p
><
input
type
=
"submit"
value
=
"提交"
></
p
>
</
form
>
</
body
>
</
html
>
|
edit_students.html 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
title
>Title</
title
>
</
head
>
<
body
>
<
h1
>编辑用户</
h1
>
<
form
method
=
"post"
action
=
"/edit_students.html"
>
{% csrf_token %}
<
input
type
=
"hidden"
name
=
"nid"
value
=
"{{ obj.id }}"
>
<
p
><
input
type
=
"text"
name
=
"username"
placeholder
=
"用户名"
></
p
>
<
p
><
input
type
=
"text"
name
=
"age"
placeholder
=
"年龄"
></
p
>
<
p
>
男<
input
type
=
"radio"
name
=
"gender"
value
=
"1"
>
女<
input
type
=
"radio"
name
=
"gender"
value
=
"0"
>
</
p
>
<
p
>
<
select
name
=
"cs"
>
{% for row in cs_list %}
<
option
value
=
"{{ row.id }}"
>{{ row.title }}</
option
>
{% endfor %}
</
select
>
</
p
>
<
p
><
input
type
=
"submit"
value
=
"提交"
></
p
>
</
form
>
</
body
>
</
html
>
|
7.学员管理系统之给班级分配老师:
在teachers数据表中增加一些老师信息:
在pycharm右上角的Database打开面板,然后将template目录下边的db.splte3鼠标拖入到Database面板中,打开db==》app01_teachers表 。
点击“+”,然后填入老师信息,然后点击有“DB”标志的向上箭头,进行数据保存.
1.在classes.py中增加set_teachers函数 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
def
set_teachers(request):
if
request.method
=
=
'GET'
:
nid
=
request.GET.get(
'nid'
,'')
cls_obj
=
models.Classes.objects.get(
id
=
nid)
cls_teacher_list
=
cls_obj.a.
all
()
all_teacher_list
=
models.Teachers.objects.
all
()
return
render(request,
'set_teachers.html'
,{
'cls_teacher_list'
:cls_teacher_list,
'all_teacher_list'
:all_teacher_list,
'nid'
:nid,
})
elif
request.method
=
=
'POST'
:
nid
=
request.POST.get(
'nid'
, '')
ids_str
=
request.POST.getlist(
'teacher_id'
,'')
ids_int
=
[]
for
i
in
ids_str:
i
=
int
(i)
ids_int.append(i)
obj
=
models.Classes.objects.get(
id
=
nid)
obj.a.
set
(ids_int)
return
redirect(
'/classes.html'
)
|
2.在urls.py 中配置url路由: 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from
django.contrib
import
admin
from
django.urls
import
path
from
app01.views
import
classes,students,teachers
urlpatterns
=
[
path(
'admin/'
, admin.site.urls),
path(
'classes.html'
, classes.get_classes),
path(
'add_classes.html'
, classes.add_classes),
path(
'del_classes.html'
, classes.del_classes),
path(
'edit_classes.html'
, classes.edit_classes),
path(
'students.html'
, students.get_students),
path(
'add_students.html'
, students.add_students),
path(
'del_students.html'
, students.del_students),
path(
'edit_students.html'
, students.edit_students),
path(
'set_teachers.html'
, classes.set_teachers),
]
|
3.在template目录下建立所需的html页面文件:
set_teachers.html 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html lang
=
"en"
>
<head>
<meta charset
=
"UTF-8"
>
<title>Title<
/
title>
<
/
head>
<body>
<form action
=
"/set_teachers.html"
method
=
"post"
>
<
input
type
=
"hidden"
name
=
"nid"
value
=
"{{ nid }}"
>
{
%
csrf_token
%
}
<select multiple size
=
"10"
name
=
"teacher_id"
>
{
%
for
item
in
all_teacher_list
%
}
{
%
if
item
in
cls_teacher_list
%
}
<option value
=
"{{ item.id }}"
selected
=
"selected"
>{{ item.name }}<
/
option>
{
%
else
%
}
<option value
=
"{{ item.id }}"
>{{ item.name }}<
/
option>
{
%
endif
%
}
{
%
endfor
%
}
<
/
select>
<
input
type
=
"submit"
value
=
"提交"
>
<
/
form>
<
/
body>
<
/
html>
|
对get_classes.html进行增添修改为:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!DOCTYPE html>
<html lang
=
"en"
>
<head>
<meta charset
=
"UTF-8"
>
<title>Title<
/
title>
<
/
head>
<body>
<div>
<table>
<thead>
<tr>
<th>
ID
<
/
th> <th>名称<
/
th> <th>任课老师<
/
th> <th>操作<
/
th>
<
/
tr>
<
/
thead>
<tbody>
{
%
for
row
in
cls_list
%
}
<tr>
<td>{{ row.
id
}}<
/
td>
<td>{{ row.title }}<
/
td>
<td>
{
%
for
item
in
row.a.
all
%
}
<span>{{ item.name }}<
/
span>
{
%
endfor
%
}
<
/
td>
<td><a href
=
"/del_classes.html?nid={{ row.id }}"
rel
=
"external nofollow"
rel
=
"external nofollow"
>删除<
/
a>
|<a href
=
"/edit_classes.html?nid={{ row.id }}"
rel
=
"external nofollow"
rel
=
"external nofollow"
>编辑<
/
a>
|<a href
=
"/set_teachers.html?nid={{ row.id }}"
rel
=
"external nofollow"
>分配老师<
/
a>
<
/
td>
<
/
tr>
{
%
endfor
%
}
<
/
tbody>
<
/
table>
<
/
div>
<div><a href
=
"/add_classes.html"
rel
=
"external nofollow"
rel
=
"external nofollow"
>添加<
/
a> <
/
div>
<
/
body>
<
/
html>
|
8.初识Ajax 。
Ajax是异步传输方式,偷偷的向后台发请求,不引起页面刷新,下面通过一个小例子来认识Ajax这种数据传输方式.
首先下载jQuery导入项目下的static目录下 。
1.在app01/Views目录下新建ajax.py 。
1
2
3
4
5
6
7
8
9
10
11
|
from
django.shortcuts
import
render,redirect,HttpResponse
def
ajax1(request):
return
render(request,
'ajax1.html'
)
def
ajax2(request):
u
=
request.GET.get(
'username'
)
p
=
request.GET.get(
'password'
)
return
HttpResponse(
'我愿意'
)
|
2.在urls.py中配置相关路由 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
from
django.contrib
import
admin
from
django.urls
import
path
from
app01.views
import
classes,students,teachers,ajax
urlpatterns
=
[
path(
'admin/'
, admin.site.urls),
path(
'classes.html'
, classes.get_classes),
path(
'add_classes.html'
, classes.add_classes),
path(
'del_classes.html'
, classes.del_classes),
path(
'edit_classes.html'
, classes.edit_classes),
path(
'students.html'
, students.get_students),
path(
'add_students.html'
, students.add_students),
path(
'del_students.html'
, students.del_students),
path(
'edit_students.html'
, students.edit_students),
path(
'set_teachers.html'
, classes.set_teachers),
path(
'ajax1.html'
, ajax.ajax1),
path(
'ajax2.html'
, ajax.ajax2),
]
|
3.在template目录下新建ajax1.html 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<!DOCTYPE html>
<html lang
=
"en"
>
<head>
<meta charset
=
"UTF-8"
>
<title>Title<
/
title>
<style>
.btn{
display: inline
-
block;
padding:
5px
15px
;
background
-
color: coral;
color: white;
cursor: pointer;
}
<
/
style>
<
/
head>
<body>
<div>
<
input
placeholder
=
"用户名"
type
=
"text"
>
<
input
placeholder
=
"密码"
type
=
"password"
>
<div
class
=
"btn"
>提交<
/
div>
<
/
div>
<script src
=
"/static/jquery-3.3.1.js"
><
/
script>
<script>
function submitForm() {
var u
=
$(
'#username'
).val();
var p
=
$(
'#password'
).val();
$.ajax({
url:
'ajax2.html'
,
type
:
'GET'
,
data:{username:u,password:p},
success:function (arg) {
/
/
回调函数 arg是服务器返回的字符串
console.log(arg)
}
})
}
<
/
script>
<
/
body>
<
/
html>
|
9.学员管理系统之Ajax删除学员: 1.在ajax.py中增加ajax4函数 。
1
2
3
4
5
6
7
8
9
|
from
app01
import
models
def
ajax4(request):
nid
=
request.GET.get(
'nid'
)
msg
=
'成功'
try
:
models.Students.objects.get(
id
=
nid).delete()
except
Exception as e:
msg
=
str
(e)
return
HttpResponse(msg)
|
2.在urls.py中配置相关路由 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
from
django.contrib
import
admin
from
django.urls
import
path
from
app01.views
import
classes,students,teachers,ajax
urlpatterns
=
[
path(
'admin/'
, admin.site.urls),
path(
'classes.html'
, classes.get_classes),
path(
'add_classes.html'
, classes.add_classes),
path(
'del_classes.html'
, classes.del_classes),
path(
'edit_classes.html'
, classes.edit_classes),
path(
'students.html'
, students.get_students),
path(
'add_students.html'
, students.add_students),
path(
'del_students.html'
, students.del_students),
path(
'edit_students.html'
, students.edit_students),
path(
'set_teachers.html'
, classes.set_teachers),
path(
'ajax1.html'
, ajax.ajax1),
path(
'ajax2.html'
, ajax.ajax2),
path(
'ajax4.html'
, ajax.ajax4),
]
|
3.对get_students.html进行添加修改:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<!DOCTYPE html>
<html lang
=
"en"
>
<head>
<meta charset
=
"UTF-8"
>
<title>Title<
/
title>
<
/
head>
<body>
<div>
<table>
<thead>
<tr>
<th>
ID
<
/
th>
<th>姓名<
/
th>
<th>年龄<
/
th>
<th>性别<
/
th>
<th>班级<
/
th>
<th>操作<
/
th>
<
/
tr>
<
/
thead>
<tbody>
{
%
for
row
in
stu_list
%
}
<tr nid
=
"{{ row.id }}"
>
<td>{{ row.
id
}}<
/
td>
<td>{{ row.username }}<
/
td>
<td>{{ row.age }}<
/
td>
<td>{{ row.gender }}<
/
td>
<td>{{ row.cs.title }}<
/
td>
<td><a href
=
"/del_students.html?nid={{ row.id }}"
rel
=
"external nofollow"
rel
=
"external nofollow"
>删除<
/
a>
|<a href
=
"#"
rel
=
"external nofollow"
>Ajax删除<
/
a>
|<a href
=
"/edit_students.html?nid={{ row.id }}"
rel
=
"external nofollow"
rel
=
"external nofollow"
>编辑<
/
a>
<
/
td>
<
/
tr>
{
%
endfor
%
}
<
/
tbody>
<
/
table>
<
/
div>
<div><a href
=
"/add_students.html"
rel
=
"external nofollow"
rel
=
"external nofollow"
>添加<
/
a> <
/
div>
<
/
body>
<script src
=
"/static/jquery-3.3.1.js"
><
/
script>
<script>
function removeStudent(ths) {
var nid
=
$(ths).parent().parent().attr(
'nid'
);
$.ajax({
url:
'/ajax4.html'
,
type
:
'GET'
,
data:{nid:nid},
success:function (arg) {
if
(arg
=
=
'成功'
){
window.location.
reload
();
}
else
{
alert(arg);
}
}
})
}
<
/
script>
<
/
html>
|
原文链接:https://www.cnblogs.com/xuepangzi/p/8493853.html 。
最后此篇关于python3.6+django2.0开发一套学员管理系统的文章就讲到这里了,如果你想了解更多关于python3.6+django2.0开发一套学员管理系统的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我对 Python-Django 和 web 开发还很陌生,我被困在这个使用 POST 创建新资源的特殊问题上。 我正在为 REST API 使用 Django REST 框架,我正在尝试创建一个新资
我已经使用 Django-storages 成功地将 Word 文档存储到 S3。 class Document(TitleSlugDescriptionModel, TimeStampedModel
我有 2 个关于模型代理的问题, 如何从模型对象创建代理对象? 如何从模型查询集创建代理查询集? 例如,假设我们定义了: from django.contrib.auth.models import
我想编写一个直接执行 HTTP 请求的单元测试(而不是使用 django.test.client.Client)。 如果您好奇为什么 - 那是因为我想测试我从 Django 应用程序公开的 Thrif
我为我的个人网站启动了一个 django 项目来学习 django。到目前为止,我已经将我的开发环境设置为我需要的一切,并遵循 this很棒的教程来创建一些基本的数据结构和模板。现在我想开始使用我之前
我已经阅读了很多关于如何在使用 Django 注册时添加额外字段的信息,例如 here 、 here 和 here 。代码片段是: forms.py(来自注册应用程序) class Registrat
我正在编写小型社交应用程序。功能之一是在网站标题中写入用户名。因此,例如,如果我登录并且我的名字是Oleg(用户名),那么我应该看到: Hello, Oleg | Click to edit prof
我有一个使用 Django 和 Django Rest 框架开发的应用程序。我想将 django-reversion 功能添加到我的应用程序中。 我已经尝试过http://django-reversi
我有一个简单的 HTML 表单,我没有使用 Django 表单,但现在我想添加一个选择。 选择最容易创建为 Django ChoiceField (与通过循环等手动创建选择相反),但是,如果没有在 D
我不明白为什么人们以两种方式编写外键,这样做的目的是什么?它们是相同还是不同? 我注意到有些人这样写: author = models.ForeignKey(Author, on_delete=mod
我想在我的 Django 应用程序中获取评论最多的十个帖子,但我做不到,因为我想不出合适的方法。 我目前正在使用 django 评论框架,并且我已经看到使用 aggregate or annotate
这对于 Django 1.2 仍然有效吗? Custom Filter in Django Admin on Django 1.3 or below 我已经尝试过,但管理类中的 list_filter
问题在于,当 django-compressor 编译为 .js 文件的 CoffeeScript 文件中引用 {{ STATIC_URL }} 时,它无法正确加载。 在我的 django 模板中,我
我正在尝试将一些字段从一个 django 模型移动到一个新模型。假设我有一个书籍模型: class Book(models.Model): title = models.CharField(max
我想在我的 Django 应用程序中获取评论最多的十个帖子,但我做不到,因为我想不出合适的方法。 我目前正在使用 django 评论框架,并且我已经看到使用 aggregate or annotate
目前我正在寻找在 Django 中实现访问控制。我已经阅读了有关内置权限的内容,但它并不关心每个对象的基础。例如,我想要“只有创建者可以删除自己的项目”之类的权限。所以我读到了 django-guar
嗨,我正在将我的 Django 模型的一个字段的值设置为其他模型的另一个字段的值。这个值应该是动态变化的。 这是我的第一个模型 class MainModel(AbstractBaseUser, Pe
我正在尝试为我的模型创建一个编辑表单。我没有使用模型表单,因为根据模型类型,用户可以使用不同的表单。 (例如,其中一个表单有 Tinymce 小部件,而另一个没有。) 有没有什么方法可以使用模型设置表
Django 模板中的搜索字段 如何在类似于此图像的 Django 模板中创建搜索字段 http://asciicasts.com/system/photos/1204/original/E354I0
根据 Django documentation ,如果 Django 安装激活了 AuthenticationMiddleware,HttpRequest 对象有一个“user”属性代表当前登录的用户
我是一名优秀的程序员,十分优秀!