我希望能够在某个事件发生后将请求重定向到其他路由。对于一个虚拟的例子,我们有以下两条路线:
@app.route('/home')
def index():
return 'Index Page'
@app.route('/home2')
def index2():
return 'Index Page 2'
我要执行以下操作:在对/home
的5个请求之后,我想将所有后续请求重定向到/home2
。在Flask中有可能吗?
1: /home -> /home
2: /home -> /home
3: /home -> /home
4: /home -> /home
5: /home -> /home
6: /home -> /home2
6: /home -> /home2