我需要从 CollectionFS 检索图像的 URL。帖子中引用了图像 ID,因此首先我找到了属于某个帖子的图像,如下所示:
模板:
{{#each drafts}}
<img src='{{images pictures.[0]}}'>
{{/each}}
帮手:
images: function (id) {
console.log(id);
console.log((Images.findOne()));
return Images.findOne({_id:id});
}
根据 CollectionFS 示例,您可以使用 {{image.url}} 获取图像的 URL,但在我的情况下,{{images.url pictures.[0]}} 不起作用并将把手错误返回到控制台。在我的情况下访问 images.url 数据的正确方法是什么?