1

ファイルを S3 にアップロードする方法に関するドキュメントをたくさん見ましたが、私の質問はちょっと逆です。私は流星アプリを持っていて、その中にセットアップしcollectionFSました。これで、アプリ内の各ドキュメントのヘッダー画像を含む S3 バケットができました。個々のドキュメントで参照するにはどうすればよいですか? (それが役立つ場合、各ドキュメントのforはバケット内slugの画像タイトルに対応しています)。slug.jpg

これまでのところ私は持っています

var imageStore = new FS.Store.S3("careerImages", {
  // region: "my-s3-region", //optional in most cases
  accessKeyId: "my-value", //required if environment variables are not set
  secretAccessKey: "my-value", //required if environment variables are not set
  bucket: "ryf2.5", //required
  // ACL: "myValue", //optional, default is 'private', but you can allow public or secure access routed through your app URL
  folder: "header_images", //optional, which folder (key prefix) in the bucket to use 
  // The rest are generic store options supported by all storage adapters
  // transformWrite: myTransformWriteFunction, //optional
  // transformRead: myTransformReadFunction, //optional
  // maxTries: 1 //optional, default 5
});

CareerImages = new FS.Collection("careerImages", {
  stores: [imageStore]
});

そして今、私は自分のテンプレートにそれらを表示する方法を見つけたいと思っています.

4

0 に答える 0