count()
を使用できます 代わりに、結果の数を返します。 データコード> それ自体は空の配列、
[]
これは誤りではありません( [] ==true
)。
また、 fetch()
は使用しないでください かなり負担がかかるため、生データを使用する場合を除きます。 .forEach
でループできます 必要に応じて。
var data = myCollection.find();
if(data.count())
console.log(data);
//If you need it for something/Not sure if this is right but just an example
$('#chart').render(data.fetch())