Google Cloud Function的HTTP触发问题

时间:2020-05-14 12:44:01

标签: python http google-cloud-platform triggers google-cloud-functions

这是我的代码

data = [1,3,4,-4,3,-6,234,-535,4343,-43433,333,-333,-333,-333]
non_negative_data = [x for x in data if x >= 0]

print(non_negative_data) # output: [1, 3, 4, 3, 234, 4343, 333]

然后我用main运行我的代码。使用Google Cloud功能上的测试代码,我可以使用触发器事件框输入参数。但是我想把参数放在URL中。如下所示。

import json
from flask import escape
def location_sort(request):
    request_json = request.get_json()
    location = json.dumps(request_json)
    location = json.loads(location)
    reverse_location = {v: k for k, v in location.items()}


    x = location.keys()
    harf_x = (float(max(x)) + float(min(x))) / 2 

    y_right = []
    y_left = []
    sorted_location = [] 


    for i in location:
        if float(i) < harf_x:
            y_left.append(location[i])
        else: 
            y_right.append(location[i])

    y_left.sort() 
    y_right.sort(reverse=True) 

    sorted_input = y_left + y_right 


    for i in sorted_input:
        sorted_location.append([reverse_location[i], i])
    for i in sorted_location:
        i[0],i[1] = float(i[0]),float(i[1])
    return sorted_location

def cal_centroid(location):
    area = 0 # 면적
    centroid_x = 0 
    centroid_y = 0 
    temp = 0

    for i in range(len(location)):
        if i == len(location)-1: 
            temp = location[i][0]*location[0][1] - location[0][0]*location[i][1]
            area += temp*0.5
            centroid_x += (location[i][0] + location[0][0]) * temp
            centroid_y += (location[i][1] + location[0][1]) * temp
        else:
            temp = location[i][0]*location[i+1][1] - location[i+1][0]*location[i][1]
            area += temp*0.5
            centroid_x += (location[i][0] + location[i+1][0]) * temp
            centroid_y += (location[i][1] + location[i+1][1]) * temp

    centroid_x = round(centroid_x / (6*area), 6)
    centroid_y = round(centroid_y / (6*area), 6)
    x = [centroid_x, centroid_y]
    return json.dumps(x)

def main(request):
    a = location_sort(request)
    return cal_centroid(a)

我应该如何更改我的代码以使其表现出来?我很难理解有关Google Functions的Google文档。谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

您将要使用JSON(而不是URL参数)发出POST请求。例如,使用curl

curl -X POST https://YOUR_REGION-YOUR_PROJECT_ID.cloudfunctions.net/FUNCTION_NAME -H "Content-Type:application/json"  -d '{"37.284213":"127.006481","37.562045":"127.034809","37.528694":"126.907483","37.411124":"127.124356"}'