例如我有
Posts = new Mongo.Collection('posts');
我在帖子中插入了一些这样的数据
Posts.insert({
tags: ["444","555"]
});
Posts.insert({
tags: ["111","222"]
});
Posts.insert({
tags: ["111","333"]
});
现在我要显示标记数字 111 (字符串)中的帖子。
问题:我该怎么做?
答案 0 :(得分:1)
Post.find({
tags: "111"
});
我相信这应该没事。