gpt4 book ai didi

javascript - 存储在/.meteor/local/cfs 的 Meteor 访问文件

转载 作者:行者123 更新时间:2023-11-29 19:41:02 25 4
gpt4 key购买 nike

大家好,我在我的陨石应用程序中使用了 CollectionFS GridFS 和 cvs 文件系统。这是我的初始化代码:

Images = new FS.Collection("images", {
stores: [new FS.Store.FileSystem("images", FS.Store.rootPath)]
});

我将上传的图片存储到根目录或/.meteor/local/cfs/files/images/uploadedfile

请帮帮我,如何访问存储在/.meteor/local/cfs 的文件?这样我就可以获得网址并显示上传的图片。

最佳答案

万岁,我终于找到了。

在这种情况下我有:

Images = new FS.Collection("images", {
stores: [new FS.Store.FileSystem("images", FS.Store.rootPath)]
});

这意味着将有名称为图像的文件夹,并将其存储到名称为图像的集合中。所以它会产生这样的 url :

var img = Images.files.findOne({_id : 'fileid'});
=> /cfs/files/images/' + img._id + '/' + img.name + '?store=images

但现在我不知道如何跟踪上传过程,希望这对大家有帮助:)

如果我知道怎么做,会更新这个答案。

中国工业联合会

关于javascript - 存储在/.meteor/local/cfs 的 Meteor 访问文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23030112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com