如何将参数从表单模板传递给请求
How to pass the arguments to the request from the form template
我想在提交表单时向请求传递附加参数 next
(应该是端点)。我试过了:
<form method="post" action="" next="/apply">
但它不起作用。
稍后收到表格时,我只需要从 request.args
读取它。如何正确操作?
您可以使用隐藏的表单域。
<form method="post" action="">
<input type="hidden" name="next" value="/apply">
<!-- the rest of your form code -->
在你的 Flask 函数中:
next = request.form.get('next')
我想在提交表单时向请求传递附加参数 next
(应该是端点)。我试过了:
<form method="post" action="" next="/apply">
但它不起作用。
稍后收到表格时,我只需要从 request.args
读取它。如何正确操作?
您可以使用隐藏的表单域。
<form method="post" action="">
<input type="hidden" name="next" value="/apply">
<!-- the rest of your form code -->
在你的 Flask 函数中:
next = request.form.get('next')