我正在建立像reddit这样的网站。对象按评级排序。我希望有人可以帮我实现分页。我只想先加载前20个对象。然后单击“下一步”按钮,我希望根据第20个对象的评级加载接下来的20个对象。以下是google文档:https://developers.google.com/appengine/docs/python/datastore/queries?hl=en。
有谁知道这样做的方法?或者那里有一个很好的教程吗?
答案 0 :(得分:2)
这是我用来检索模型实例和光标的通用函数。该函数接受参数,我从请求中读取它们。
def retrieve_dbs(query, order=None, limit=None, cursor=None, **filters):
''' Retrieves entities from datastore, by applying cursor pagination
and equality filters. Returns dbs and more cursor value
'''
limit = limit or config.DEFAULT_DB_LIMIT
cursor = Cursor.from_websafe_string(cursor) if cursor else None
model_class = ndb.Model._kind_map[query.kind]
if order:
for o in order.split(','):
if o.startswith('-'):
query = query.order(-model_class._properties[o[1:]])
else:
query = query.order(model_class._properties[o])
for prop in filters:
if filters.get(prop, None) is None:
continue
if type(filters[prop]) == list:
for value in filters[prop]:
query = query.filter(model_class._properties[prop] == value)
else:
query = query.filter(model_class._properties[prop] == filters[prop])
model_dbs, more_cursor, more = query.fetch_page(limit, start_cursor=cursor)
more_cursor = more_cursor.to_websafe_string() if more else None
return list(model_dbs), more_cursor
你可以这样称呼它。我使用extentions entity_db和entity_dbs来表示我的变量引用实体对象,* _db和* _dbs定义是否有一个或多个结果。
entity_dbs, entity_cursor = retrieve_dbs(
model.Entity.query(),
limit=limit, # Your limit parameter
cursor=cursor, # The cursor if you want to grab a batch of next results
order=order,
)
答案 1 :(得分:1)
如果您在数据存储区查询中使用limit = 20,并且之后获取游标以获得下一个20,那么这非常简单。