我正在编写流星简单颜色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}});
};
}
答案 0 :(得分:5)
是的,删除你的)并再试一次......
Colors = new Meteor.Collection("colors");