gpt4 book ai didi

Flask-Pydantic 禁用对 get 请求的验证

转载 作者:行者123 更新时间:2023-12-03 08:18:48 30 4
gpt4 key购买 nike

我有一个接受 get 和 post 请求的 Flask View ,并且我使用 Pydantic 使用 Flask-pydantic 进行请求正文验证。它适用于 post 请求,但在 get 请求时它会返回 415 错误并显示此消息 -{"detail":"请求中不支持媒体类型''。需要'application/json'。"}

@bp.route('/login', methods=('GET', 'POST',))
@validate()
def login(body: UserLoginSchema):
if request.method == 'POST':
existing_user = UserListSchema.from_orm(
db_session.query(UserModel.id, UserModel.email, UserModel.first_name, UserModel.last_name,
UserModel.is_admin, UserModel.is_verified, UserModel.password)
.filter_by(email=body.email, is_active=True).first()
)
if existing_user:
if check_password_hash(existing_user.password, body.password):
session.clear()
session['user'] = str(existing_user.json())
return redirect(url_for('index'))

flash('Invalid username or password')
return render_template('auth/login.html')

我尝试将函数中的查询参数设置为空字符串或无,但没有帮助。

最佳答案

我删除了flask-pydantic包并手动初始化了pydantic模型,因为flask-pydantic的验证装饰器需要将内容类型 header 设置为application/json

@bp.route('/login', methods=('GET', 'POST',))
def login():
if request.method == 'POST':
body = auth_schemas.UserLoginSchema(**request.form)
existing_user = auth_schemas.UserListSchema.from_orm(
db_session.query(UserModel.id, UserModel.email, UserModel.first_name, UserModel.last_name,
UserModel.is_admin, UserModel.is_verified, UserModel.password)
.filter_by(email=body.email, is_active=True).first()
)
if existing_user:
if check_password_hash(existing_user.password, body.password):
session.clear()
session['user'] = str(existing_user.json())
return redirect(url_for('index'))

flash('Invalid username or password')
return render_template('auth/login.html')

然后我创建了一个 ValidationError 处理程序来在初始化 pydantic 模型类时捕获验证错误。

from pydantic import ValidationError


@app.errorhandler(ValidationError)
def handle_pydantic_validation_errors(e):
return jsonify(e.errors())

关于Flask-Pydantic 禁用对 get 请求的验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68505611/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com