我正在将Meteor与AutoForm和Iron Router一起使用。

我有一个自动插入数据的表单,我想在成功插入后重定向到我添加的数据页面。我该怎么办?

这是为:

{{#autoForm collection="Products" id="add" type="insert"}}
    <h4 class="ui dividing header">Products Information</h4>
      {{> afQuickField name='name'}}
      {{> afQuickField name='info'}}
    <button type="submit" class="ui button">Insert</button>
{{/autoForm}}

铁路由器:
Router.route('/products/:_id', {
  name: 'page',
  data: function() { return Products.findOne(this.params._id);}
});

回调/ Hook
AutoForm.hooks({
  add: {
    onSuccess: function(doc) {
      Router.go('page', ???);
    }
  }
});

最佳答案

AutoForm Hook 将返回您的docId。看:
https://github.com/aldeed/meteor-autoform#callbackshooks



因此使用:

Router.go('page',{_id: this.docId});

10-04 21:32