重定向/反向解析

主要用于多个页面之间的跳转。
url_for('蓝图定义的名称.方法名')

定义跳转方法,跳转到get_response的方法上

@blue.route('/getredirect/')
def get_redirect():

    return redirect('getresponse')

使用url_for反向解析

from flask import redirect, url_for

@blue.route('/getredirect/')
def get_redirect():

    return redirect(url_for('first.get_response'))

你可能感兴趣的:(重定向/反向解析)