功能瓶创建路线

时间:2019-05-18 21:42:14

标签: python python-3.x flask sqlalchemy

我正在构建类似于myPhpAdmain

的应用

我需要允许会话中的用户为其所需的页面创建路由(aka:@app.route

@app.route('/<x>')
def <x>():

  return render_template (<x>+'.html')

其中x是用户通过前端提供的变量

x = request.form.get('x')

如何允许用户通过功能创建类似的Pages路由,而又不允许他们自己在我的Flask应用程序中编写页面路由?

1 个答案:

答案 0 :(得分:0)

使用variable routing

@app.route('/<x>')
def user_route(x):
    return render_template(f"{x}.html")