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.
我正在尝试将我的烧瓶应用程序转换为 Quart ASGI,在尝试获取请求参数/参数时遇到问题。
正常请求与 Quart 一起使用时会出错
Example: @app.route('/') async def hello(): return function(request.args.get('requestID'))
无法在 Quart 中使用request.args.get('requestID')获取参数参数