如何获取在 posts_list 中实例化的帖子的 _id?

How to get the _id of posts that are instantiated in posts_list?

我需要在 Telescope 中显示所有 post_item_id。 Collection 中的不是 posts_itens,而是显示的那些。

使用Google翻译

您可以使用 cursor.map(),如果您尝试获取具有 post_item 个元素的 _id 值的数组:

var postIdsArr = Posts.find({}, {
    _id: 1
}).map(function(post) {
    return post._id;
});

阅读有关 cursor.map() method 的更多信息。