2
私はgcloud npmモジュールを使用しています。前もって感謝します。node.jsのGoogleデータストアで特にレコード(名前空間、種類)を数える方法はありますか?
私はそれほど試しましたが、何も得られませんでした。
私はgcloud npmモジュールを使用しています。前もって感謝します。node.jsのGoogleデータストアで特にレコード(名前空間、種類)を数える方法はありますか?
私はそれほど試しましたが、何も得られませんでした。
このエンティティの種類のクエリを実行し、結果をカウントする必要があります。
var query = ds.createQuery('EntityKind');
ds.runQuery(query, function(err, entities, info){
if(err) { // deal with error }
var total = entities.length;
// You should check if there are more result
// and maybe run the query again until there are no more result
if (info.moreResults !== gcloud.datastore.NO_MORE_RESULTS) {
// More result
}
});
あなたは解決策を見つけましたか?私は探していて、適切な答えを見つけていない – fnaquira