6

我正在使用 Autoform 和 Slingshot 进行 S3 交互。当用户提交表单时,我想拦截该过程,通过 Slingshot 将文件上传到 S3,doc用返回的扩展对象,downloadUrl然后在此时,返回新更新的文档,并继续自动生成过程

我有以下代码:

{{#autoForm collection="Tabs" id="newTabForm" type="method" meteormethod="createTab"}}

   ...
    <div class="modal-body">
      <fieldset>
         {{> afFormGroup name='downloadUrl' type='file' class='file-bag'}}
    ...

AutoForm.hooks({
  newTabForm: {
    before: {
      insert: function(doc, template) {
        console.log(doc);
        var file     = $('.file-bag')[0].files[0];

        var self = this;
        uploader.send(file, function(error, downloadUrl) {
          if (error) { throw new Meteor.Error(error); }

          doc = _.extend(doc, { downloadUrl: downloadUrl });
          self.result(doc);
        });
      }
    },
 ....

Meteor.methods({
createTab: function(doc) {
  check(doc, TabSchema);

  var priceInCents = doc.price * 100;
  var extraTabAttributes = {
    userId: Meteor.userId(),
    price: priceInCents
  };

  _.extend(doc, extraTabAttributes);
  Tabs.insert(doc, function(error, result) {
    if (error) { return error; }
  });
}

哪个在文档上正确存储 url(但看起来很奇怪,C://fakepath/filename..),但无法将其上传到 S3 服务器

还有一个问题,为什么console.log(doc);之前的钩子没有向客户端/服务器记录任何内容?

4

1 回答 1

3

我不熟悉自动表单,但我认为你的前钩子是不正确的。

https://github.com/aldeed/meteor-autoform#callbackshooks,它说

before: {

  // Replace `formType` with the form `type` attribute to which this hook applies
  formType: function(doc) {}

}

所以在你的情况下,

insert: function(doc, template)

应该替换为

method: function(doc, template)
于 2015-04-11T06:52:38.617 回答