跳转至

Flask 使用 Blueprint 整合路由

约 12 个字 7 行代码 预计阅读时间不到 1 分钟

使用方法

/blueprint/route.py
1
2
3
4
5
route_bp = Blueprint('route', __name__, url_prefix='/route')

@route_bp.route('/', methods=['PUT'])
def create_route():
    ...
/app.py
app = Flask(__name__)
app.register_blueprint(route_bp)