Django 提交 form 表单
程序员文章站
2022-10-05 09:38:33
创建 Django 的过程可以参考上一篇文章 https://www.cnblogs.com/klvchen/p/10601536.html 在 templates 文件夹下创建一个 index.html 文件来提交和展示数据 在 views.py 文件中编写逻辑 在 urls.py 文件中添加路径 ......
创建 django 的过程可以参考上一篇文章
在 templates 文件夹下创建一个 index.html 文件来提交和展示数据
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>title</title> </head> <body> <form action="/userinfo" method="post"> <p>名字<input type="text" name="username"></p> <p>性别<input type="text" name="sex"></p> <p>邮箱<input type="text" name="email"></p> <p><input type="submit" value="submit"></p> </form> <hr> <h1>数据展示</h1> <table border="1px"> <tr> <td>名字</td> <td>性别</td> <td>邮箱</td> </tr> {% for i in user_list %} <tr> <td>{{ i.username }}</td> <td>{{ i.sex }}</td> <td>{{ i.email }}</td> </tr> {% endfor %} </table> </body> </html>
在 views.py 文件中编写逻辑
from django.shortcuts import render # create your views here. user_list=[] def userinfo(req): if req.method=="post": username = req.post.get("username", none) sex = req.post.get("sex", none) email = req.post.get("email", none) user = {"username":username, "sex":sex, "email":email} user_list.append(user) return render(req, "index.html", {"user_list":user_list})
在 urls.py 文件中添加路径
from django.contrib import admin from django.urls import path from blog import views urlpatterns = [ path('admin/', admin.site.urls), path('userinfo', views.userinfo), ]
因为涉及到表单提交,暂时把检查跨域安全的配置注释,在 settings.py 文件中注释
#'django.middleware.csrf.csrfviewmiddleware',
启动服务后,浏览器访问 http://127.0.0.1:8888/userinfo
上一篇: 你气任你气我打我游戏