我有一個約20個對象的列表,並且爲每個對象返回一個包含10個詞典的列表。
我想存儲每個對象在GAE列表中的10個字典的列表;我認爲我沒有正確編寫代碼將這些信息存儲到GAE。
以下是我有: 我的主要請求處理程序之前,我有這個類:在GAE中存儲詞典列表
class Tw(db.Model):
tags = db.ListProperty()
ip = db.StringProperty()
在我的主要請求處理我有以下幾點:
for city in lst_of_cities: # this is the list of 20 objects
dict_info = hw12.twitter(city) # this is the function to get the list of 10 dictionaries for each object in the list
datastore = Tw() # this is the class defined for db.model
datastore.tags.append(dict_info) #
datastore.ip = self.request.remote_addr
datastore.put()
data = Data.gql("") #data entities we need to fetch
我不知道如果這個代碼是根本寫的。如果任何人可以請幫助它將不勝感激。
聽起來像您的列表相當靜態。爲什麼不把它存儲在代碼或數據文件中? – 2011-05-03 19:40:03