Mongo中的Meteor数据在哪里?

时间:2012-12-07 19:00:43

标签: javascript node.js meteor

我正在编写流星简单颜色example screencast。通过Chrome JS控制台(视频中的1:08)将一些颜色插入数据库后:

Colors.insert({name: "red"});
Colors.insert({name: "green"});

我想知道是否可以在mongo控制台中找到相同的数据:

$ meteor mongo
MongoDB shell version: 2.2.1
connecting to: 127.0.0.1:3002/meteor
> show dbs
local   (empty)
meteor  0.0625GB
> use meteor
switched to db meteor
> show collections
colors)
system.indexes
> db.colors.find()
>

无。

为什么那里没有数据?

为什么在“colors”集合名称后面有一个“)”是否相关?

这是我的.js文件:

Colors = new Meteor.Collection("colors)");

if (Meteor.isClient) {
  Template.colour_list.colors = function()
  {
    return Colors.find({}, {sort : {likes: -1, name: 1}});
  };
}

1 个答案:

答案 0 :(得分:5)

是的,删除你的)并再试一次......

Colors = new Meteor.Collection("colors");