python - 存储发布数据以供使用 Flask-Login 进行身份验证后使用

标签 python post flask flask-login

每个文章页面都有一个表单,供登录用户添加评论。我希望用户即使尚未登录也能够发表评论。他们应该被重定向到登录页面,然后添加评论。但是,当 Flask-Login 的 login_required 重定向回页面时,它不是 POST 请求,并且不会保留表单数据。有没有办法在登录和重定向后保留 POST 数据?

@articles.route('/articles/<article_id>/', methods=['GET', 'POST'])
def article_get(article_id):
    form = CommentForm(article_id=article_id)

    if request.method == 'POST':
        if form.validate_on_submit():
            if current_user.is_authenticated():
                return _create_comment(form, article_id)
        else:
            return app.login_manager.unauthorized()

    r = requests.get('%s/articles/%s/' % (app.config['BASE'], article_id))
    article = r.json()['article']
    comments = r.json()['comments']
    article['time_created'] = datetime.strptime(article['time_created'], '%a, %d %b %Y %H:%M:%S %Z')

    for comment in comments:
        comment['time_created'] = datetime.strptime(comment['time_created'], '%a, %d %b %Y %H:%M:%S %Z')

    return render_template('articles/article_item.html', article=article, comments=comments, form=form)

def _create_comment(form, article_id):
    headers = {'Content-type': 'application/json', 'Accept': 'text/plain'}
    data = {'body': form.body.data, 'article_id': article_id, 'user_id': current_user.id}
    r = requests.post('%s/articles/comment/' % app.config['BASE'], data=json.dumps(data), headers=headers)
    return redirect(url_for('.article_get', article_id=article_id, _anchor='comment-set'))

最佳答案

由于用户必须登录才能发帖,因此如果用户未登录,则仅显示“单击此处登录”链接而不是表单会更有意义。


如果您确实想这样做,您可以在重定向到登录路由时在 session 中存储任何表单数据,然后在返回评论路由后检查此存储的数据。也存储请求的路径,这样只有当您返回同一页面时数据才会恢复。要存储数据,您需要创建自己的 login_required 装饰器。

request.form.to_dict(flat=False)会将 MultiDict 数据转储到列表字典中。这可以存储在 session 中。

from functools import wraps
from flask import current_app, request, session, redirect, render_template
from flask_login import current_user
from werkzeug.datastructures import MultiDict

def login_required_save_post(f):
    @wraps(f)
    def decorated(*args, **kwargs):
        if current_app.login_manager._login_disabled or current_user.is_authenticated:
            # auth disabled or already logged in
            return f(*args, **kwargs)

        # store data before handling login
        session['form_data'] = request.form.to_dict(flat=False)
        session['form_path'] = request.path
        return current_app.login_manager.unauthorized()

    return decorated

@app.route('/article/<int:id>', methods=['GET', 'POST'])
@login_required_save_post
def article_detail(id):
    article = Article.query.get_or_404(id)

    if session.pop('form_path', None) == request.path:
        # create form with stored data
        form = CommentForm(MultiDict(session.pop('form_data')))
    else:
        # create form normally
        form = CommentForm()

    # can't validate_on_submit, since this might be on a redirect
    # so just validate no matter what
    if form.validate():
        # add comment to article
        return redirect(request.path)

    return render_template('article_detail.html', article=article)

关于python - 存储发布数据以供使用 Flask-Login 进行身份验证后使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32215548/

相关文章:

python - Flask - 蓝图 - 在第一次请求之前?

python - 如何在动态创建的 QMdiAreaSubWindow 中处理 matplotlib pick Artist 事件? (给出的示例 - 部分工作!)

python - 检查 count() 后模型索引错误

Python 正则表达式错误字符范围。

php - empty($_POST ['var' ]) 当输入值为 '0' 时返回 true

python-3.x - 安装python-flask会显示错误[python setup.py egg_info失败,错误代码为1]

python - Google Cloud 上的 Bokeh Flask 部署

php - 处理后数组值并转储到数据库

python - 如何使用 python 请求获取 uuid

python - Flask 蓝图将对象传递到另一个文件