13

Image ( CollectionFSimageIdを使用したファイル) を取得し、Image の Id を Itemsフィールドに挿入する方法を理解しようとしています。

lib/collections/items.js

Items = new Mongo.Collection("items");
Items.attachSchema(new SimpleSchema({
  name: {
    type: String,
    label: "Name",
  },
  userId: {
    type: String,
    regEx: SimpleSchema.RegEx.Id,
    autoform: {
      type: "hidden",
      label: false
    },
    autoValue: function () { return Meteor.userId() },
  },
  image: {
    type: String,
    optional: true,
    autoform: {
      label: false,
      afFieldInput: {
        type: "fileUpload",
        collection: "Images",
        label: 'Select Photo',
      }
    }
  },
  imageId: {
   type: String
  }
}));

lib/collections/images.js

if (Meteor.isServer) {
  var imageStore = new FS.Store.S3("images", {
    accessKeyId: Meteor.settings.AWSAccessKeyId, 
    secretAccessKey: Meteor.settings.AWSSecretAccessKey, 
    bucket: Meteor.settings.AWSBucket, 
  });

  Images = new FS.Collection("Images", {
    stores: [imageStore],
    filter: {
      allow: {
        contentTypes: ['image/*']
      }
    }
  });
}

// On the client just create a generic FS Store as don't have
// access (or want access) to S3 settings on client
if (Meteor.isClient) {
  var imageStore = new FS.Store.S3("images");
  Images = new FS.Collection("Images", {
    stores: [imageStore],
    filter: {
      allow: {
        contentTypes: ['image/*']
      },
    }
  });
}

現在、私の許可ルールは次のとおりです。

サーバー/allows.js

Items.allow({
  insert: function(userId, doc){return doc && doc.userId === userId;},
  update: function(userId, doc){ return doc && doc.userId === userId;},
  remove: function(userId, doc) { return doc && doc.userId === userId;},
})

Images.allow({
  insert: function(userId, doc) { return true; },
  update: function(userId,doc) { return true; },
  remove: function(userId,doc) { return true; },
  download: function(userId, doc) {return true;},
});

Autoform を使用しているため、フォームは次のようになります。

client/item_form.html

<template name="insertItemForm">
  {{#autoForm collection="Items" id="insertItemForm" type="insert"}}
      {{> afQuickField name="name" autocomplete="off"}}
      {{> afQuickField name="image" id="imageFile"}}
      <button type="submit">Continue</button>
  {{/autoForm}}
</template>

現在、ブラウズを選択して画像を選択すると、それはデータベースにあり、_idそれを取得して、後で作成されるに配置したいのですItemが、その特定の画像を取得するにはどうすればよいですか? これは画像を参照する良い方法だと思いました。

更新 1

ファイルが選択された後、ID が実際には非表示になっていることを確認します。

<input type="hidden" class="js-value" data-schema-key="image" value="ma633fFpKHYewCRm8">

だから私はma633fFpKHYewCRm8に配置されるようにしようとしStringていImageIdます。

更新 2

多分 1 つの方法はFS.File Referenceを使用することですか?

4

1 に答える 1

1

ファイルが挿入された後、関連するコレクションの更新を行うメソッドを呼び出すだけで、同じ問題をより簡単に解決できました。

client.html

<template name="hello">
<p>upload file for first texture:   <input id="myFileInput1" type="file"> </p>
</template>

lib.js

var textureStore = new FS.Store.GridFS("textures");

TextureFiles = new FS.Collection("textures", {
  stores: [textureStore]
});

Textures = new Mongo.Collection("textures");

client.js

Template.hello.events({
        'change #myFileInput1': function(event, template) {
          uploadTextureToDb('first',event);
        }
      });

function uploadTextureToDb(name, event) {
    FS.Utility.eachFile(event, function(file) {
      TextureFiles.insert(file, function (err, fileObj) {
        // Inserted new doc with ID fileObj._id, and kicked off the data upload using HTTP
        console.log('inserted');
        console.log(fileObj);
        //after file itself is inserted, we also update Texture object with reference to this file
        Meteor.call('updateTexture',name,fileObj._id);
      });
    });
  }

サーバー.js

  Meteor.methods({
    updateTexture: function(textureName, fileId) {
      Textures.upsert(
        {
          name:textureName
        },
        {
          $set: {
            file: fileId,
            updatedAt: Date.now()
          }
        });
    }
  });

autoForm と simpleSchema を使用しているため、簡単ではないかもしれませんが、最初は autoForm と simpleSchema を忘れて、単純な html とデフォルト コレクションで動作するようにすることをお勧めします。

すべてが機能したら、それらの設定に戻ることができますが、CollectionFS に関しては、特に autoForm によって生成されたスタイリングに関しては、さらに問題が発生する可能性があることに注意してください。

于 2016-02-04T19:33:13.307 に答える