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.
我正在开发 Flask 应用程序。
我正在使用DispatcherMiddleware来组合我的应用程序
app.wsgi_app = DispatcherMiddleware( app.wsgi_app, {'/health': subapp.wsgi_app} )
有没有办法让我的主应用程序和我的子应用程序共享同一个会话?
您可以通过向两个应用程序添加相同的密钥来访问会话。