您好,登錄后才能下訂單哦!
這篇文章給大家介紹Forms怎么在Django中使用,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
創(chuàng)建文件do.html
{% extends 'base.html' %} {% block mainbody %} <form action="/app1/do/" method="post"> {% csrf_token %} {{ form.as_p }} <input type="submit" value="Submit"> </form> {% for item in student %} <p>{{ item.id }}, {{ item }}</p> {% endfor %} {% endblock %}
在urls.py中添加路徑:
url(r'^do/', 'app1.views.do'),
在views.py中定義do函數(shù)
from django.shortcuts import render from django.core.context_processors import csrf from app1.models import Student from django import forms def do(request): context = {} context.update(csrf(request)) if request.POST: form = StudnetForm(request.POST) if form.is_valid(): name = form.cleaned_data['name'] student = Student(name = name) student.save() form = StudnetForm() context = {} context.update(csrf(request)) student_list = Student.objects.all() context['student'] = student_list context['form'] = form return render(request, 'do.html', context)
現(xiàn)在的數(shù)據(jù)庫里面有四條數(shù)據(jù):
訪問 http://localhost:8000/app1/do/
可以看到
然后添加Name:
可以看到數(shù)據(jù)添加到了數(shù)據(jù)庫中:
關(guān)于Forms怎么在Django中使用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。