0

如何在流星中使用collectionFS获取特定商店的文件url?我需要在我的渲染代码中检索它:

var url = Images.findOne(filesList[index].id).url();

这让我返回了图像的默认存储,但在图像中我有两个存储:

Images = new FS.Collection("images", {
  stores: [fullImage, previewImage],
  filter: {
    allow: {
      contentTypes: ['image/*']
    },
    onInvalid: function (message) {
      if (Meteor.isClient) {
        toastr.warning("Impossibile salvare l'immagine a causa di: " + message);
      } else {
        console.log(message);
      }
    }
  }
});

我需要检索 previewImage,我不能使用标签代码,因为我需要在客户端的后台下载它..

4

1 回答 1

0

刚刚找到一个简单的解决方案:

Images.findOne(filesList[index].id).url({store: 'preview'});

于 2015-08-24T20:16:57.837 回答