Flask入门教程(3)-表单验证和WTF扩展

2024-03-17 01:38

本文主要是介绍Flask入门教程(3)-表单验证和WTF扩展,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

03-01-普通的表单验证

03-02-flash消息闪现


html代码:

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title>
</head>
<body>
<form method="post"><lable>用户名:</lable><input type="text" name="username"><br><lable>密码:</lable><input type="password" name="password"><br><lable>确认密码:</lable><input type="password" name="password2"><br><input type="submit" value="提交">{# 使用遍历获取闪现的消息 #}{% for message in get_flashed_messages() %}{{ message }}{% endfor %}</form>
</body>
</html>

python代码:

from flask import Flask, render_template, request, flashapp = Flask(__name__)
app.secret_key = 'itheima'
'''
目的:实现一个简单的登录的逻辑处理
1.路由需要有get和post两种请求方式 --> 需要判断请求方式
2.获取请求的参数
3.判断参数是否填写 & 密码是否相同
4.如果判断都没有问题,就返回一个success
'''
'''
给模板传递消息
flash --> 需要对内容加密,因此需要时何止secret_key,做加密消息的混淆
模板中需要遍历消息
'''@app.route('/', methods=['GET', 'POST'])
def index():# request: 请求对象 --> 获取请求方式、数据# 1.判断请求方式if request.method == 'POST':# 2.获取请求的参数username = request.form.get('username')password = request.form.get('password')password2 = request.form.get('password2')print(username)# 3.判断参数是否填写 & 密码是否相同if not all([username, password, password2]):# print('参数不完整')flash('参数不完整')elif password != password2:# print('密码不一致')flash('密码不一致')else:return 'success'return render_template('index.html')if __name__ == '__main__':app.run()

03-03-WTF简介

03-04-WTF表单的显示


html代码

<hr><form method="post">{{ form.username.label }}{{ form.username }}<br>{{ form.password.label }}{{ form.password }}<br>{{ form.password2.label }}{{ form.password2 }}<br>{{ form.submit }}<br>
</form>

python代码

from flask_wtf import FlaskForm
from wtforms import StringField, PasswordField, SubmitField
'''
使用WTF实现表单
自定义表单类
'''
class LoginForm(FlaskForm):username = StringField('用户名:')password = PasswordField('密码:')password2 = PasswordField('确认密码:')submit = SubmitField('提交:')@app.route('/form', methods=['GET', 'POST'])
def login():login_form = LoginForm()return render_template('index.html', form=login_form)

03-05-WTF的逻辑验证


html代码

<hr><form method="post">{{ form.csrf_token() }}{{ form.username.label }}{{ form.username }}<br>{{ form.password.label }}{{ form.password }}<br>{{ form.password2.label }}{{ form.password2 }}<br>{{ form.submit }}<br>
</form>

python代码

from wtforms.validators import DataRequired, EqualToclass LoginForm(FlaskForm):username = StringField('用户名:', validators=[DataRequired()])password = PasswordField('密码:', validators=[DataRequired()])password2 = PasswordField('确认密码:', validators=[DataRequired(), EqualTo('password', '密码填入不一致')])submit = SubmitField('提交:')@app.route('/form', methods=['GET', 'POST'])
def login():login_form = LoginForm()# 1.判断请求方式if request.method == 'POST':# 2.获取请求的参数username = request.form.get('username')password = request.form.get('password')password2 = request.form.get('password2')print(password)# 3.验证参数.WTF可以一句话就实现所有的校验# 我们没有CSRF_tokenif login_form.validate_on_submit():print(username, password)return 'success'else:flash('参数有误')return render_template('index.html', form=login_form)

这篇关于Flask入门教程(3)-表单验证和WTF扩展的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/817401

相关文章

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

科研绘图系列:R语言扩展物种堆积图(Extended Stacked Barplot)

介绍 R语言的扩展物种堆积图是一种数据可视化工具,它不仅展示了物种的堆积结果,还整合了不同样本分组之间的差异性分析结果。这种图形表示方法能够直观地比较不同物种在各个分组中的显著性差异,为研究者提供了一种有效的数据解读方式。 加载R包 knitr::opts_chunk$set(warning = F, message = F)library(tidyverse)library(phyl

Spring框架5 - 容器的扩展功能 (ApplicationContext)

private static ApplicationContext applicationContext;static {applicationContext = new ClassPathXmlApplicationContext("bean.xml");} BeanFactory的功能扩展类ApplicationContext进行深度的分析。ApplicationConext与 BeanF

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

HTML提交表单给python

python 代码 from flask import Flask, request, render_template, redirect, url_forapp = Flask(__name__)@app.route('/')def form():# 渲染表单页面return render_template('./index.html')@app.route('/submit_form',

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

easyui同时验证账户格式和ajax是否存在

accountName: {validator: function (value, param) {if (!/^[a-zA-Z][a-zA-Z0-9_]{3,15}$/i.test(value)) {$.fn.validatebox.defaults.rules.accountName.message = '账户名称不合法(字母开头,允许4-16字节,允许字母数字下划线)';return fal

easyui 验证下拉菜单select

validatebox.js中添加以下方法: selectRequired: {validator: function (value) {if (value == "" || value.indexOf('请选择') >= 0 || value.indexOf('全部') >= 0) {return false;}else {return true;}},message: '该下拉框为必选项'}

form表单提交编码的问题

浏览器在form提交后,会生成一个HTTP的头部信息"content-type",标准规定其形式为Content-type: application/x-www-form-urlencoded; charset=UTF-8        那么我们如果需要修改编码,不使用默认的,那么可以如下这样操作修改编码,来满足需求: hmtl代码:   <meta http-equiv="Conte