redirect 视图函数跳转 视图函数 的 方法 (这个方法是302 重定向)

from flask import  redirect,url_for

@app.route("/book/search")
def hello():
  return redirect(url_for("lucax"))   #跳转到 lucax函数的视图函数

@app.route("/book/22")
def lucax():
  return "牛b"

 

还可以直接输入url

redirect("https://baidu.com") 

 

后记:

如果跳转的视图函数是带参数的 

return  redirect(url_for("web.book_detail",isbn=isbn))

@web.route("/book/<isbn>/detail")
def book_detail(isbn):
yushu_book=YuShuBook()

posted @   凯宾斯基  阅读(342)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示