Meteor js客户端直接连接到mongodb

时间:2014-01-27 10:05:04

标签: javascript node.js mongodb meteor

在客户端使用meteor js并且从这个条件:if(Meteor.isClient),是否可以直接连接到mongodb集合?

如果是的话,我该怎么做?

1 个答案:

答案 0 :(得分:1)

嗯,这就是Meteor的意义所在!见the documentation。简单的例子:

if(Meteor.isClient) {
  Documents = new Meteor.Collection('documents');
  var document = Documents.findOne({title: 'Example'});
}