admin管理员组

文章数量:1421000

I was coding along with the Meteor simple colours example screencast. After inserting some colours into the database via the Chrome JS Console (1:08 in the video):

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

I wanted to see if I could find this same data in the mongo console:

$ 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()
>

Nothing.

Why is there no data in there?

Also why is there a ")" after the "colors" collection name, is that related?

This is my .js file:

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

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

I was coding along with the Meteor simple colours example screencast. After inserting some colours into the database via the Chrome JS Console (1:08 in the video):

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

I wanted to see if I could find this same data in the mongo console:

$ 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()
>

Nothing.

Why is there no data in there?

Also why is there a ")" after the "colors" collection name, is that related?

This is my .js file:

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

if (Meteor.isClient) {
  Template.colour_list.colors = function()
  {
    return Colors.find({}, {sort : {likes: -1, name: 1}});
  };
}
Share Improve this question asked Dec 7, 2012 at 19:00 nickponlinenickponline 26k34 gold badges106 silver badges179 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 5

Yes, remove your ) and try again ...

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

本文标签: javascriptWhere is Meteor data in MongoStack Overflow