Meteor AutoForm停止继续提交

时间:2016-03-10 21:19:52

标签: javascript meteor meteor-autoform meteor-collection2

我想使用Meteor的autoform包为我的CAS_Entry集合创建一个表单。代码如下所示。我还添加了已定义的钩子,遗憾的是只执行了beginSubmitbefore,并且没有向集合添加任何条目。使用Meteor shell,插件就像魅力一样。

我很感激任何提示。

addCasEntry.html,用于显示表单的模板:

{{#autoForm collection="CAS_Entry" type="insert" id="addCasEntryForm"}}
  {{> afQuickField name="type" options="allowed"}}
  {{> afQuickField name="description" rows="6" type="textarea"}}
  {{> afQuickField name="file" type="cfs-file" collection="Images"}}
  {{> afQuickField name="date" }}
  <button type="submit" class="btn btn-primary">Add</button>
{{/autoForm}}

addCasEntry.js,添加调试挂钩:

AutoForm.hooks({
  addCasEntryForm: {
    before: {
      insert: function(doc) {
        console.log(doc);
      }
    },
    after: {
      insert: function(error, result) {
        console.log('Occured error: ' + error);
      }
    },
    beginSubmit: function() {
      console.log('begin submit');  
    },
    onSuccess: function(formType, result) {
      console.log("Insert succeeded");
      console.log('Result ' + result);
    },
    onError: function(formType, error) {
      console.log('Error!!!');
      console.log(error);
    }
  }
});

SimpleSchema.debug = true;

/lib/collection/cas_entry.js:

CAS_Entry = new Mongo.Collection("cas_entries");

CAS_Entry.attachSchema(new SimpleSchema({
  type: {
    type: String,
    allowedValues: ['reflection', 'evidence']
  },
  description: {
    type: String,
    optional: true
  },
  file: {
    type: String,
    optional: true,
  },
  timeUploaded: {
    type: Date,
    optional: true,
    autoValue: function() {
      return new Date();
    }
  },
  date: {
    type: Date,
  }
}));

CAS_Entry.allow({
  'insert': function() {
    return true;
  },
  'update': function() {
    return true;
  }
});

这是控制台输出:

console output

1 个答案:

答案 0 :(得分:1)

您的表单将不会被提交,因为您没有将文档返回或传递到before挂钩内的this.result();

AutoForm.hooks({
  addCasEntryForm: {
    // ...
    before: {
      insert: function(doc) {
        console.log(doc);
        return doc;
      }
    }
    // ...
  }
});

根据documentation,您应该根据您定义的前提条件使用以下语句之一:

  • 同步,提交:return doc;
  • 同步,取消:return false;
  • 异步,请提交:this.result(doc);
  • 异步,取消:this.result(false);