在GAE中将列表/数组作为请求参数传递

时间:2012-10-11 15:39:34

标签: google-app-engine

我想知道如何在GAE请求中将数组作为REST参数传递。我的具体意图是获得一系列的整数。

1 个答案:

答案 0 :(得分:1)

您可以使用json转储数组并将json字符串添加到帖子的有效内容中。

示例:

list_1 = [1,2,3,4,5]
list_2 = ['A', 'B', 'C']
data = {'list_1' : list_1, 'list_2' : list_22}
response = urlfetch.fetch(url='http://....', payload=simplejson.dumps(data), method=urlfetch.POST,
                          headers={'Content-Type': 'application/x-www-form-urlencoded'})