我想知道如何在GAE请求中将数组作为REST参数传递。我的具体意图是获得一系列的整数。
答案 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'})