Google函数-如何在Python中处理多个资源路径



我正在尝试使用google functions创建一个小型rest服务器。有人能告诉我如何处理多个资源路径吗?

目前我正在做以下的方式。

def func_handler(request):
print(request.path)
if request.path == "/":
return handle_root_path(request)
if request.path == "/test":
return handle_test_path(request)

由于google函数在python下面使用flask,有什么方法可以使用@app.route装饰器来处理它吗?

我写了一篇关于这方面的文章。看看并从中汲取灵感!

请记住,这不是一个好主意。更喜欢Cloud Run。

相关内容

  • 没有找到相关文章