我正在与 Meteor 简单颜色示例截屏视频一起编码。通过 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()
>
没有。
为什么里面没有数据?
另外为什么“颜色”集合名称后面有一个“)”,这有关系吗?
这是我的 .js 文件:
Colors = new Meteor.Collection("colors)");
if (Meteor.isClient) {
Template.colour_list.colors = function()
{
return Colors.find({}, {sort : {likes: -1, name: 1}});
};
}