我正在创建一个网站,该页面顶部的导航栏将具有一个下拉列表,您可以在其中从选项列表中进行选择。如何获取显示在url中的选项列表,如下所示。我不想为子组中的每个选项创建函数。我想知道是否每个选项视图都可以由1个函数处理。期望:localhost:5000 / config / Option2实际:localhost:5000 / config
topbar = Navbar(
'',
View('Welcome Page', ('welcome')),
Subgroup('Master',
View('Option 1', ('config')),
View('Option 2', ('config')),
View('Option 3', ('config')),
View('Option 4', ('config')),
),
View('Rename', ('add_case')),
View('Logout', ('logout'))
)
nav.register_element('top', topbar)
@app.route('/config', methods=('GET', 'POST'))
@login_required
def config() -> str:
return redirect(ContextURL('/config'))