企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
无敌bottle怎么解页面重定向呢,还是一个函数:redirect 使用方法:return redirect(要重定向的页面路径) 下面给demo: ~~~ # coding:UTF-8 from bottle import Bottle, redirect app = Bottle() @app.get('/') def index(): return redirect("/abc") app.run(host="127.0.0.1", port=8000, reloader=True, debug=True) ~~~