Retrieving Data from Meteor Collections

前端 未结 5 1422
北恋
北恋 2021-02-08 18:54

I\'m having a few problems when trying to get data from a Meteor Collection and I need some advice.

The collection has been defined, published, and subscribed successful

5条回答
  •  广开言路
    2021-02-08 19:32

    try this way

    Meteor.subscribe('testData', function() {
      var document = Documents.find();
      console.log(document); 
    });
    

提交回复
热议问题