greyli / bluelog

Check out the newer version (2024) of this project: https://github.com/greyli/greybook
MIT License
454 stars 662 forks source link

_init__.py在注册蓝图的时候默认是访问哪个路径 #5

Closed mylysddp closed 5 years ago

mylysddp commented 5 years ago

init.py中是这样导入蓝图的 from bluelog.blueprints.auth import auth_bp 一般情况下蓝图有没有默认访问路径,可以通过哪个参数来修改这个访问路径么

greyli commented 5 years ago

没太明白你的意思,举个例子?

meizhaohui commented 5 years ago

没有默认的路径,可以通过 app.register_blueprint(auth_bp, url_prefix='/auth') 的形式指定auth_bp蓝图使用/auth前缀.