4

我在使用 Google Datastore 进行分页时遇到问题。我有一个没有限制的查询有几百个结果。我想检索 5 个,将它们发回给用户,如果用户想要更多,他们将检索下一个 5。

按照文档,我创建了查询:

var query = datastore.createQuery('ResultsKind').filter('name', 'bobby').limit(5).autoPaginate(false);

然后我运行此查询以获得前 5 个结果:

datastore.runQuery(query, callback);

这是回调函数:

function callback(err, entities, nextQuery, apiResponse) {
    if (err) {
        // An error occurred while running the query.
        console.log('err ' + err);
        return;
    }

    if (nextQuery) {
        console.log('res = ' + entities);
        datastore.runQuery(nextQuery, callback);
    } else {
        // No more results exist.
        console.log('no more results');
        return;
    }
};

问题是res =在控制台中打印无限次而没有结果。我不确定我做错了什么。我想发生的是。

1) I create the initial query.
2) I run the query.
3) I get the first 5 results.
4) I pass these results + the nextquery object to the user.
5) If the user wants more results the pass me back the nextQuery and I run this query and get the next 5 results and so on.

我一直在看这个文档: http: //googlecloudplatform.github.io/gcloud-node/#/docs/v0.30.2/datastore/query ?method=autoPaginate 。

我怎样才能完成这个简单的分页?

4

1 回答 1

3

在您的回调中,您将在以下内容之后直接重新运行查询console.log

if (nextQuery) {
    console.log('res = ' + entities);
    datastore.runQuery(nextQuery, callback); // <-- Here
}

这基本上是在做同样的事情autoPaginate(true)。相反,您应该删除该行 cache nextQuery,然后在用户要求时运行您删除的同一行以获得下一批结果。

于 2016-04-10T21:59:22.940 回答