Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含许多路由的蓝图,它使用 url_prefix 选项进行实例化:
myxyz = Blueprint('xyz', __name__, url_prefix='/xyz')
这适用于所有路线,没问题。但是,蓝图中的一条路由不需要此前缀,但仍然是蓝图中的一部分。
有没有办法覆盖蓝图中路由定义中的前缀?
编辑:
似乎没有直接的方法,快速的解决方法是将前缀硬编码到所有需要它的路由中,这与我所要求的相反(但现在有效)。