Django的Form主要具備一下幾大功能:css
一、form的建立:html
示例:python
class LoginForm(Form):
# 正則驗證:不能爲空,6-18
username=fields.CharField(
max_length=18,
min_length=6,
required=True,
error_messages={
'required':'用戶名不能爲空',
'min_length':'用戶名最少須要6個字符',
'max_length':'用戶名最多可用18個字符',
})
# 正則驗證: 不能爲空,16+
password = fields.CharField(
min_length=10,
required=True,
error_messages={
'required': '密碼不能爲空',
'min_length': '密碼最少須要10個字符',
}
)
在views.py函數內部的處理:jquery
from django.shortcuts import render,HttpResponse,redirect
from django.forms import Form
from django.forms import fields
class LoginForm(Form):
# 正則驗證:不能爲空,6-18
username=fields.CharField(
max_length=18,
min_length=6,
required=True,
error_messages={
'required':'用戶名不能爲空',
'min_length':'用戶名最少須要6個字符',
'max_length':'用戶名最多可用18個字符',
})
# 正則驗證: 不能爲空,16+
password = fields.CharField(
min_length=10,
required=True,
error_messages={
'required': '密碼不能爲空',
'min_length': '密碼最少須要10個字符',
}
)
def login(request):
if request.method == "GET":
return render(request,'login.html')
else:
obj = LoginForm(request.POST)
if obj.is_valid():
# 用戶輸入格式正確
print(obj.cleaned_data) # 字典類型
return redirect('http://www.cnblogs.com/xuyuanyuan123/')
else:
# 用戶輸入格式錯誤
return render(request,'login.html',{'obj':obj})
url.pygit
from app01 import views
urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^login.html$', views.login),
]
login.html正則表達式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="/static/plugins/bootstrap-3.3.7-dist/css/bootstrap.css" />
<link rel="stylesheet" href="/static/plugins/font-awesome-4.7.0/css/font-awesome.css" />
<style> body { background: url("http://p1.so.qhimgs1.com/bdr/_240_/t01496c13d1b5e3b8e1.gif"); background-size: 100%; } .login{ width: 550px; height: 360px; background-color: papayawhip; text-align: center; margin-top: 20px; margin-left: 510px; position: fixed; } .user{ margin-top: 100px; font-size: 20px; } .pwd{ margin-top: 30px; font-size: 20px; } .choise{ margin-top: 20px; } </style>
</head>
<h1 style="text-align: center;font-size: 50px;font-style:normal;color:#b2dba1;margin-top: 170px">博客園</h1>
<body>
<form id="f1" method="post" action="/login.html" class="form-horizontal">
<div class="login"> {% csrf_token %} <div class="user"> 用戶名:<input type="text" name="username">{{ obj.errors.username.0 }} </div>
<div class="pwd"> 密 碼:<input type="password" name="password">{{ obj.errors.password.0 }} </div>
<div>
<button type="submit" class="btn btn-primary">登陸</button>
<a class="btn btn-primary" onclick="Ajaxlogin()">Ajax登陸</a>
<a class="btn btn-primary" href="/register.html">註冊</a>
</div> {{ msg }} </div>
</form>
<script src="/static/jquery-1.12.4.js"></script>
</body>
</html>
執行的效果圖是:數據庫
二、form類django
建立Form類時,主要涉及到 【字段】 和 【插件】bootstrap
字段:用於對用戶請求數據的驗證app
插件:用於自動生成HTML;
(1)、Django內置字段以下:
Field
required=True, 是否容許爲空
widget=None, HTML插件
label=None, 用於生成Label標籤或顯示內容
initial=None, 初始值
help_text='', 幫助信息(在標籤旁邊顯示)
error_messages=None, 錯誤信息 {'required': '不能爲空', 'invalid': '格式錯誤'}
show_hidden_initial=False, 是否在當前插件後面再加一個隱藏的且具備默認值的插件(可用於檢驗兩次輸入是否一直)
validators=[], 自定義驗證規則
localize=False, 是否支持本地化
disabled=False, 是否能夠編輯
label_suffix=None Label內容後綴
示例:
class TestForm(forms.Form):
user = fields.CharField(
required=True,
max_length=12,
min_length=3,
error_messages={},
widget = widgets.TextInput(attrs={"class":123}), # 定製html插件,屬性:用attrs參數
# widget= widgets.Textarea()
label="姓名",
initial='laiying',
show_hidden_initial=False,
# validators=[] #自定製驗證規則
# disabled=True
label_suffix=":"
)
Django內置字段以下:
CharField(Field)
max_length=None, 最大長度
min_length=None, 最小長度
strip=True 是否移除用戶輸入空白
IntegerField(Field)
max_value=None, 最大值
min_value=None, 最小值
FloatField(IntegerField)
...
DecimalField(IntegerField)
max_value=None, 最大值
min_value=None, 最小值
max_digits=None, 總長度
decimal_places=None, 小數位長度
BaseTemporalField(Field)
input_formats=None 時間格式化
DateField(BaseTemporalField) 格式:2015-09-01
TimeField(BaseTemporalField) 格式:11:12
DateTimeField(BaseTemporalField)格式:2015-09-01 11:12
DurationField(Field) 時間間隔:%d %H:%M:%S.%f
...
RegexField(CharField)
regex, 自定製正則表達式
max_length=None, 最大長度
min_length=None, 最小長度
error_message=None, 忽略,錯誤信息使用 error_messages={'invalid': '...'}
EmailField(CharField)
...
FileField(Field)
allow_empty_file=False 是否容許空文件
ImageField(FileField)
...
注:須要PIL模塊,pip3 install Pillow
以上兩個字典使用時,須要注意兩點:
- form表單中 enctype="multipart/form-data"
- view函數中 obj = MyForm(request.POST, request.FILES)
URLField(Field)
...
BooleanField(Field)
...
NullBooleanField(BooleanField)
...
ChoiceField(Field)
...
choices=(), 選項,如:choices = ((0,'上海'),(1,'北京'),)
required=True, 是否必填
widget=None, 插件,默認select插件
label=None, Label內容
initial=None, 初始值
help_text='', 幫助提示
ModelChoiceField(ChoiceField)
... django.forms.models.ModelChoiceField
queryset, # 查詢數據庫中的數據
empty_label="---------", # 默認空顯示內容
to_field_name=None, # HTML中value的值對應的字段
limit_choices_to=None # ModelForm中對queryset二次篩選
ModelMultipleChoiceField(ModelChoiceField)
... django.forms.models.ModelMultipleChoiceField
TypedChoiceField(ChoiceField)
coerce = lambda val: val 對選中的值進行一次轉換
empty_value= '' 空值的默認值
MultipleChoiceField(ChoiceField)
...
TypedMultipleChoiceField(MultipleChoiceField)
coerce = lambda val: val 對選中的每個值進行一次轉換
empty_value= '' 空值的默認值
ComboField(Field)
fields=() 使用多個驗證,以下:即驗證最大長度20,又驗證郵箱格式
fields.ComboField(fields=[fields.CharField(max_length=20), fields.EmailField(),])
MultiValueField(Field)
PS: 抽象類,子類中能夠實現聚合多個字典去匹配一個值,要配合MultiWidget使用
SplitDateTimeField(MultiValueField)
input_date_formats=None, 格式列表:['%Y--%m--%d', '%m%d/%Y', '%m/%d/%y']
input_time_formats=None 格式列表:['%H:%M:%S', '%H:%M:%S.%f', '%H:%M']
FilePathField(ChoiceField) 文件選項,目錄下文件顯示在頁面中
path, 文件夾路徑
match=None, 正則匹配
recursive=False, 遞歸下面的文件夾
allow_files=True, 容許文件
allow_folders=False, 容許文件夾
required=True,
widget=None,
label=None,
initial=None,
help_text=''
GenericIPAddressField
protocol='both', both,ipv4,ipv6支持的IP格式
unpack_ipv4=False 解析ipv4地址,若是是::ffff:192.0.2.1時候,可解析爲192.0.2.1, PS:protocol必須爲both才能啓用
SlugField(CharField) 數字,字母,下劃線,減號(連字符)
...
UUIDField(CharField) uuid類型
需求: 在頁面上不用加self直接顯示input框
代碼以下:
text.html
<body>
{{txt}}
</body>
views.py
def test(request):
if request.methon == 'GET':
txt = "<input type='text' />"
from django.utils.safestring import mark_safe
txt = mark_safe(txt)
return render(request,'text.html',{'txt':txt})
注:UUID是根據MAC以及當前時間等建立的不重複的隨機字符串
>>> import uuid # make a UUID based on the host ID and current time
>>> uuid.uuid1() # doctest: +SKIP
UUID('a8098c1a-f86e-11da-bd1a-00112444be1e') # make a UUID using an MD5 hash of a namespace UUID and a name
>>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org') UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e') # make a random UUID
>>> uuid.uuid4() # doctest: +SKIP
UUID('16fd2706-8baf-433b-82eb-8c7fada847da') # make a UUID using a SHA-1 hash of a namespace UUID and a name
>>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org') UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d') # make a UUID from a string of hex digits (braces and hyphens ignored)
>>> x = uuid.UUID('{00010203-0405-0607-0809-0a0b0c0d0e0f}') # convert a UUID to a string of hex digits in standard form
>>> str(x) '00010203-0405-0607-0809-0a0b0c0d0e0f'
# get the raw 16 bytes of the UUID
>>> x.bytes b'\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f'
# make a UUID from a 16-byte string
>>> uuid.UUID(bytes=x.bytes) UUID('00010203-0405-0607-0809-0a0b0c0d0e0f')
(2)、Django內置插件:
TextInput(Input)
NumberInput(TextInput)
EmailInput(TextInput)
URLInput(TextInput)
PasswordInput(TextInput)
HiddenInput(TextInput)
Textarea(Widget)
DateInput(DateTimeBaseInput)
DateTimeInput(DateTimeBaseInput)
TimeInput(DateTimeBaseInput)
CheckboxInput
Select
NullBooleanSelect
SelectMultiple
RadioSelect
CheckboxSelectMultiple
FileInput
ClearableFileInput
MultipleHiddenInput
SplitDateTimeWidget
SplitHiddenDateTimeWidget
SelectDateWidget
經常使用選擇插件
<strong># 單radio,值爲字符串</strong>
# user = fields.CharField(
# initial=2,
# widget=widgets.RadioSelect(choices=((1,'上海'),(2,'北京'),))
# )
<strong># 單radio,值爲字符串</strong>
# user = fields.ChoiceField(
# choices=((1, '上海'), (2, '北京'),),
# initial=2,
# widget=widgets.RadioSelect
# )
<strong># 單select,值爲字符串</strong>
# user = fields.CharField(
# initial=2,
# widget=widgets.Select(choices=((1,'上海'),(2,'北京'),))
# )
<strong># 單select,值爲字符串</strong>
# user = fields.ChoiceField(
# choices=((1, '上海'), (2, '北京'),),
# initial=2,
# widget=widgets.Select
# )
<strong># 多選select,值爲列表</strong>
# user = fields.MultipleChoiceField(
# choices=((1,'上海'),(2,'北京'),),
# initial=[1,],
# widget=widgets.SelectMultiple
# )
<strong># 單checkbox</strong>
# user = fields.CharField(
# widget=widgets.CheckboxInput()
# )
<strong># 多選checkbox,值爲列表</strong>
# user = fields.MultipleChoiceField(
# initial=[2, ],
# choices=((1, '上海'), (2, '北京'),),
# widget=widgets.CheckboxSelectMultiple
# )
示例:
select的多種寫法:
a、單選
# 下拉框的方法1:
# cls_id = fields.IntegerField(
# widget=widgets.Select(choices=[(1,'上海'),(2,'北京')]))
# 下拉框的方法2:
# cls_id = fields.CharField(
# widget=widgets.Select(choices=[(1,'昌平區'),(2,'海淀區'),(3,'朝陽區')]))
# 下拉框的方法3:
# cls_id = fields.ChoiceField(
# choices=[(1,'10號線'),(2,'8號線'),(3,'5號線')]
# )
b、多選
#多選下拉框(有自定義屬性)
# xdb = fields.MultipleChoiceField(
# choices=[(1, '朝陽區'), (2, '海淀區'), (3, '昌平區')],
# widget=widgets.SelectMultiple(attrs={'class':'c1'}) #後面參數是定製屬性
# )
#單選checkbox
# xdb = fields.CharField(
# widget=widgets.CheckboxInput()
# )
#多選checkbox (多個checkbox,二選一)
# xdb = fields.MultipleChoiceField(
# initial=[2, ],
# choices=((1, '上海'), (2, '北京'),),
# widget=widgets.CheckboxSelectMultiple
# )
#多個選項Radio (互斥 三選一)
# xdb = fields.ChoiceField(
# choices=((1, '上海'), (2, '北京'),(3, '北京1'),),
# initial=2,
# widget=widgets.RadioSelect
# )
用form實現驗證的功能:(一對1、一對多、多對多)
一、單表的操做:(一對一)====>班級表
首先創建一個新的目錄:(該結構以下)
首先先創建表格,在models.py內寫入:
from django.db import models
class Classes(models.Model):
cname=models.CharField(max_length=32)
class Student(models.Model):
sname=models.CharField(max_length=32)
email=models.CharField(max_length=32)
age=models.IntegerField(max_length=16)
cls=models.ForeignKey('Classes')
class Teacher(models.Model):
tname=models.CharField(max_length=32)
c2t=models.ManyToManyField('Classes')
# c2t=models.ManyToManyField('Classes')至關於創建的第四張關係表
urls.py
from django.conf.urls import url
from django.contrib import admin
from app01 import views
urlpatterns = [
url(r'^admin/', admin.site.urls),
# =======班級表:單表操做=====
url(r'^classes.html$',views.classes),
url(r'^add_class.html$',views.add_class),
url(r'^edit_class/(\d+)',views.edit_class),
url(r'^del_class/(\d+)',views.del_class),
# ======班級表和學生表操做:一對多操做=====
url(r'^student.html$',views.student),
url(r'^add_student.html$',views.add_student),
url(r'^edit_student/(\d+)',views.edit_student),
url(r'^del_student/(\d+)',views.del_student),
# ===========班級表和老師表操做:多對多操做=========
url(r'^teacher.html$',views.teacher),
url(r'^add_teacher.html$',views.add_teacher),
url(r'^edit_teacher/(\d+)',views.edit_teacher),
url(r'^del_teacher/(\d+)',views.del_teacher),
]
views.py
from django.shortcuts import render,redirect,HttpResponse
from django.forms import Form
from app01 import models
from django.forms import fields
from django.forms import widgets
# =========================班級表操做=========================
class ClassForm(Form):
cname=fields.RegexField('老男孩\d+')
def classes(request):
cls_list=models.Classes.objects.all()
return render(request,"classes.html",{"cls_list":cls_list})
def add_class(request):
if request.method=="GET":
obj=ClassForm()
return render(request,"add_class.html",{"obj":obj})
else:
obj=ClassForm(request.POST)
print(obj)
if obj.is_valid():
# obj.cleaned_data是字典格式
# print(obj.cleaned_data)
#若是用戶輸入的信息無誤的話,則須要在數據庫中插入用戶輸入的數據
models.Classes.objects.create(**obj.cleaned_data)
return redirect("/classes.html")
return render(request,'add_class.html',{'obj':obj})
def edit_class(request,nid):
if request.method=="GET":
res=models.Classes.objects.filter(id=nid).first()
# 讓頁面顯示初始值
# obj = ClassForm(data={'cname': '老男孩3期'})#這裏面含有驗證規則,有錯誤信息顯示
obj=ClassForm(initial={'cname':res.cname})
return render(request,"edit_class.html",{'nid':nid,'obj':obj})
else:
obj=ClassForm(request.POST)
if obj.is_valid():
models.Classes.objects.filter(id=nid).update(**obj.cleaned_data)
return redirect("/classes.html")
return render(request,"edit_class.html",{'nid':nid,'obj':obj})
def del_class(request,nid):
models.Classes.objects.filter(id=nid).delete()
return redirect("/classes.html")
classes.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>班級列表</h1>
<div>
<a href="/add_class.html">添加班級</a>
</div>
<ul>
{% for i in cls_list %}
<li>
{{ i.cname }}|<a href="/edit_class/{{ i.id }}">編輯</a>|<a href="/del_class/{{ i.id }}">刪除</a>
</li>
{% endfor %}
</ul>
</body>
</html>
add_class.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>添加班級</h1>
<form method="POST" action="/add_class.html">
{% csrf_token %}
<p>
{{ obj.cname }}{{ obj.errors.cname.0 }}
</p>
<p>
<input type="submit" value="提交">
</p>
</form>
</body>
</html>
edit_class.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>編輯班級</h1>
<form action="/edit_class/{{ nid }}" method="POST">
{% csrf_token %}
<p>
{{ obj.cname }}{{ obj.errors.cname.0 }}
</p>
<input type="submit" value="提交">
</form>
</body>
</html>
頁面展現效果圖:
二、form驗證操做:(一對多)====>班級表和學生表操做:
views.py
from django.shortcuts import render,redirect,HttpResponse
from django.forms import Form
from app01 import models
from django.forms import fields
from django.forms import widgets
# ================一對多:學生表操做======
class StudentForm(Form):
sname=fields.CharField(
min_length=2,
max_length=6,
widget=widgets.TextInput(attrs={'class':'form-control'})#給標籤的input框加一個樣式
)
email=fields.EmailField(
widget=widgets.TextInput(attrs={'class': 'form-control'})
)
age=fields.IntegerField(
min_value=18,
max_value=30,
widget=widgets.TextInput(attrs={'class': 'form-control'})
)
# 下拉框的方法1:
# cls_id = fields.IntegerField(
# widget=widgets.Select(choices=[(1,'上海'),(2,'北京')]))
# 下拉框的方法2:
# cls_id = fields.CharField(
# widget=widgets.Select(choices=[(1,'昌平區'),(2,'海淀區'),(3,'朝陽區')]))
# 下拉框的方法3:
# cls_id = fields.ChoiceField(
# choices=[(1,'10號線'),(2,'8號線'),(3,'5號線')]
# )
cls_id=fields.IntegerField(
# widget=widgets.Select(choices=[(1,'上海'),(2,'北京')])
#在這裏須要用列表套元祖的方式,因此用values_list
widget=widgets.Select(choices=models.Classes.objects.values_list('id', 'cname'),attrs={'class': 'form-control'})
)
def student(request):
s_list=models.Student.objects.all()
return render(request,"student.html",{"s_list":s_list})
def add_student(request):
if request.method=="GET":
obj=StudentForm()
return render(request,"add_student.html",{'obj':obj})
else:
obj=StudentForm(request.POST)
if obj.is_valid():
models.Student.objects.create(**obj.cleaned_data)
return redirect("/student.html")
else:
return render(request, "add_student.html", {'obj': obj})
def edit_student(request,nid):
if request.method=="GET":
ret=models.Student.objects.filter(id=nid).values("sname","email","age","cls_id").first()
obj=StudentForm(initial=ret)
return render(request,"edit_student.html",{'nid':nid,'obj':obj})
else:
obj=StudentForm(request.POST)
if obj.is_valid():
models.Student.objects.filter(id=nid).update(**obj.cleaned_data)
return redirect("/student.html")
else:
return render(request, "edit_student.html", {'nid': nid,'obj':obj})
def del_student(request,nid):
models.Student.objects.filter(id=nid).delete()
return redirect("/student.html")
student.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>學生列表</h1>
<a href="/add_student.html">添加學生</a>
<ul>
{% for i in s_list %}
<li>
{{ i.sname }}/{{ i.email }}/{{ i.age }}/{{ i.cls_id }}/{{ i.cls.title }}|<a href="/edit_student/{{ i.id }}">編輯</a>|<a href="/del_student/{{ i.id }}">刪除</a>
</li>
{% endfor %}
</ul>
</body>
</html>
add_student.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>添加學生</h1>
<form action="/add_student.html" method="POST">
{% csrf_token %}
<p>
{{ obj.sname }}{{ obj.errors.sname.0 }}
</p>
<p>
{{ obj.email }}{{ obj.errors.email.0 }}
</p>
<p>
{{ obj.age }}{{ obj.errors.age.0 }}
</p>
<p>
{{ obj.cls_id }}{{ obj.errors.cls_id.0 }}
</p>
<input type="submit" value="提交" />
</form>
</body>
</html>
edit_student.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div style="width: 500px;margin: 0 auto;">
<form class="form-horizontal" method="POST" action="/edit_student/{{ nid }}/">
{% csrf_token %}
<div class="form-group">
<label class="col-sm-2 control-label">姓名:</label>
<div class="col-sm-10">
{{ obj.sname }}{{ obj.errors.sname.0 }}
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">郵箱:</label>
<div class="col-sm-10">
{{ obj.email }}{{ obj.errors.email.0 }}
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">年齡:</label>
<div class="col-sm-10">
{{ obj.age }}{{ obj.errors.age.0 }}
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">班級:</label>
<div class="col-sm-10">
{{ obj.cls_id }}{{ obj.errors.cls_id.0 }}
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<input type="submit" class="btn btn-default" value="提交" />
</div>
</div>
</form>
</div>
</body>
</html>
頁面效果圖展示:
三、form表單驗證:班級表和老師表(多對多的關係)
views.py
from django.shortcuts import render,redirect,HttpResponse
from django.forms import Form
from app01 import models
from django.forms import fields
from django.forms import widgets
# ============多對多:老師表操做===============
class TeacherForm(Form):
tname=fields.CharField(min_length=2)
cls_name=fields.MultipleChoiceField(
choices=models.Classes.objects.values_list("id","cname"),
widget=widgets.SelectMultiple
)
def teacher(request):
t_list=models.Teacher.objects.all()
return render(request,"teacher.html",{'t_list':t_list})
def add_teacher(request):
if request.method=="GET":
obj=TeacherForm()
return render(request,"add_teacher.html",{'obj':obj})
else:
obj=TeacherForm(request.POST)
if obj.is_valid():
print(obj.cleaned_data)
cls_name=obj.cleaned_data.pop("cls_name")
row=models.Teacher.objects.create(**obj.cleaned_data)
# print(cls_name)
print(row)
row.c2t.add(*cls_name)
return redirect('/teacher.html')
return render(request, "add_teacher.html", {'obj': obj})
def edit_teacher(request,nid):
if request.method=="GET":
res=models.Teacher.objects.filter(id=nid).first()#取到老師的id和老師的姓名
#須要取到班級的id
class_id=res.c2t.values_list("id")
# print(class_id)#是一個字符串
# cid_list=[]
cid_list=list(zip(*class_id))[0] if list(zip(*class_id)) else []
# 使用三元表達式cid_list=list(zip(*class_id))[0] if list(zip(*class_id)) else []
obj=TeacherForm(initial={'tname':res.tname,'cid_list':cid_list})
return render(request,"edit_teacher.html",{'nid':nid,'obj':obj})
else:
obj=TeacherForm(request.POST)
if obj.is_valid():
# print(obj.cleaned_data)#{'tname': 'alex', 'cls_name': ['1', '2']}
cls_name=obj.cleaned_data.pop("cls_name")
print(cls_name)
ret=models.Teacher.objects.filter(id=nid).update(**obj.cleaned_data)
res=models.Teacher.objects.filter(id=nid).first()
# print(ret)
print(res)
# res.c2t.remove()
res.c2t.set(cls_name)
return redirect("/teacher.html")
else:
print("ok")
return render(request, "edit_teacher.html", {'nid': nid, 'obj': obj})
def del_teacher(request,nid):
models.Teacher.objects.filter(id=nid).delete()
return redirect("/teacher.html")
teacher.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>老師列表</h1>
<a href="/add_teacher.html">添加老師</a>
<table border="1px">
<thead>
<tr>
<th>老師ID</th>
<th>老師姓名</th>
<th>任教班級</th>
<th>操做</th>
</tr>
</thead>
<tbody>
{% for i in t_list %}
<tr>
<th>{{ i.id }}</th>
<th>{{ i.tname }}</th>
<th>
{% for j in i.c2t.all %}
{{ j.cname }}
{% endfor %}
</th>
<th>
<a href="/edit_teacher/{{ i.id }}">編輯</a>
|
<a href="/del_teacher/{{ i.id }}">刪除</a>
</th>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>
add_teacher.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>添加老師</h1>
<form action="/add_teacher.html" method="POST">
{% csrf_token %}
<p>
老師姓名:{{ obj.tname }}{{ obj.errors.tname.0 }}
</p>
<p>
老師班級:{{ obj.cls_name }}{{ obj.errors.cls_name.0 }}
</p>
<input type="submit" value="提交">
</form>
</body>
</html>
edit_teacher.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>編輯老師</h1>
<form method="POST" action="/edit_teacher/{{ nid }}">
{% csrf_token %}
<p>
{{ obj.tname }}{{ obj.errors.tname.0 }}
</p>
<p>
{{ obj.cls_name }}{{ obj.errors.cls_name.0 }}
</p>
<input type="submit" value="提交">
</form>
</body>
</html>
頁面展示效果圖: