WSGI
2025/3/17小于 1 分钟
什么是WSGI
WSGI(Web Server Gateway Interface)是Web服务器网关接口的缩写,它是Web服务器和Web应用程序之间的一种接口协议。它定义了Web服务器与Web应用程序或框架之间的通信协议。
https://geocld.github.io/2017/08/14/wsgi/ https://foofish.net/python-wsgi.html#google_vignette
参考flask源码 当使用app.run的方式启动时,后面的调用链,知道makeServer方法 搞清楚自己实现一个简单的wsgl服务器和wsgl应用程序
https://www.cnblogs.com/work115/p/17523794.html
https://flask.tutorial.hogwarts.ceshiren.com/test_platform_backend/flask/L1/tutorial/Flask%E7%8E%AF%E5%A2%83%E5%AE%89%E8%A3%85%E4%B8%8E%E9%85%8D%E7%BD%AE/ flush run 和直接app.run之后使用python app.py的区别