我正在构建类似于myPhpAdmain
我需要允许会话中的用户为其所需的页面创建路由(aka:@app.route
)
@app.route('/<x>')
def <x>():
return render_template (<x>+'.html')
其中x
是用户通过前端提供的变量
x = request.form.get('x')
如何允许用户通过功能创建类似的Pages路由,而又不允许他们自己在我的Flask应用程序中编写页面路由?
答案 0 :(得分:0)
@app.route('/<x>') def user_route(x): return render_template(f"{x}.html")