Meteor JS:如何仅显示Mongo中具有特定单词的数据?

时间:2015-07-08 07:14:04

标签: javascript mongodb meteor

例如我有

Posts = new Mongo.Collection('posts');

我在帖子中插入了一些这样的数据

Posts.insert({
   tags: ["444","555"]
});


Posts.insert({
   tags: ["111","222"]
});


Posts.insert({
   tags: ["111","333"]
});

现在我要显示标记数字 111 (字符串)中的帖子

问题:我该怎么做?

1 个答案:

答案 0 :(得分:1)

Post.find({
  tags: "111"
});

我相信这应该没事。