我正在尝试创建一个Flask服务,在其中我想将来自一个request.form的数据发送到json格式的另一个url,请问有人可以帮助我实现这一点吗?
redirect(url_for('any_method'), json = json.dumps(my_form_dict))
当我尝试执行以上代码时,出现以下错误:
TypeError: redirect() got an unexpected keyword argument 'json' The above is the error here.
答案 0 :(得分:3)
您可以使用307状态代码重定向POST请求。 使用:
redirect(url_for('any_method', json=json.dumps(my_form_dict)), code=307)
有关更多信息,请参考以下答案: Make a POST request while redirecting in flask
答案 1 :(得分:0)
您的问题是您向redirect函数传递了太多参数。它仅需要三个参数location
,code
和Response
。如果要传递其他参数,请使用Flask url_for方法:
redirect(url_for('any_method', json=form_json))
请注意区别,您将url_for
和extra字段作为两个参数传递。在我的版本中,我在url_for
中添加了额外的字段,因此redirect
仅接收一个参数。
答案 2 :(得分:0)
无法重定向POST请求。 更多信息是here。