为什么Google Cloud Function HTTP 在main 函数中需要一个参数?
Why does Google Cloud Function HTTP need a parameter in the main function?
在 Google 云函数 (http) 中。
为什么这样做:
def hello_world(a):
return f'Hello World!'
但不是这个 :
def hello_world():
return f'Hello World!'
云函数需要请求参数,以防您必须使用请求数据(get 或 post 数据)在您的函数中处理它们。接口契约需要 1 个参数。就这么定了,不然不行
在 Google 云函数 (http) 中。
为什么这样做:
def hello_world(a):
return f'Hello World!'
但不是这个 :
def hello_world():
return f'Hello World!'
云函数需要请求参数,以防您必须使用请求数据(get 或 post 数据)在您的函数中处理它们。接口契约需要 1 个参数。就这么定了,不然不行