2012-12-07 96 views
5

我正在編寫Meteor簡單顏色example screencast。將一些顏色到通過Chrome JS控制檯數據庫(1:08視頻)後:Mongo中的流星數據在哪裏?

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

我想看看我是否能在蒙戈控制檯找到此相同的數據:

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

什麼都沒有。

爲什麼那裏沒有數據?

另外爲什麼在「顏色」集合名稱後面有一個「)」,是相關的?

這是我的.js文件:

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

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

回答

5

是,刪除你的),然後再試一次......

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

感謝。非常尷尬。 – nickponline