Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The Blueprint(url_prefix) parameter is not working when using nesting blueprint #4037

Closed
greyli opened this issue May 13, 2021 · 0 comments
Closed

Comments

@greyli
Copy link
Member

greyli commented May 13, 2021

Minimal example:

from flask import Flask, Blueprint

app = Flask(__name__)
parent = Blueprint('parent', __name__, url_prefix='/child')
child = Blueprint('child', __name__, url_prefix='/parent')


@child.get('/')
def index():
    return 'hello'


parent.register_blueprint(child)
app.register_blueprint(parent)

The output of flask routes:

$ flask routes
Endpoint            Methods  Rule
------------------  -------  -----------------------
parent.child.index  GET      /
static              GET      /static/<path:filename>

The URL rule should be /parent/child/ instead of /.

P.S. The URL prefix works fine if set the prefix by using register_blueprint(url_prefix).

Environment:

  • Flask version: 2.0
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants