python flask route如何传递不确定的参数

时间:2018-09-20 03:37:38

标签: python flask

如何传递不确定的参数,传递的参数数量不确定

我们都知道何时要在烧瓶路由函数中传递一个参数,我们将按照以下步骤进行操作

@app.route('/delete/<int:id>')
@login_required
def delete_todo_list(id):
    pass

但是问题是,如果我想传递参数我不知道的数字,我该如何编码烧瓶路径函数。

0 个答案:

没有答案