javascript – 在使用AutoForm和铁路由器的Meteor上检查插入成功后重定向提交表单的标准模式?
作者:互联网
我正在使用Meteor和AutoForm&铁路由器.
我有一个autoform用于插入记录,我想重定向到另一个页面以在成功插入后查看记录.什么是普遍接受的方式?
如果我使用标准的autoform插件,如:
{{#autoForm collection="Articles" id="articleSubmit" type="insert"}}
我看不出如何重定向?
如果我使用’method’类型,如下所示:
{{#autoForm collection="Articles" id="articleSubmit" type="method"}}
然后我必须编写一个不特别干的插入方法.
解决方法:
表单是一个表单,如果你使用type =“method”,这意味着你正在使用Meteor.method,表格将为你处理,Meteor.call
现在如果你想做一些Router.go(),你需要编写一些JS代码,你可以使用钩子,它带有autoform包,就像这样的例子
Articles.hooks({
contactForm: {
onSubmit: function (insertDoc, updateDoc, currentDoc) {
if (someHandler(insertDoc)) {
this.done();
Articles.clean(doc); / you can do more logic here, cleaning the form.
Router.go('thePath');
} else {
this.done(new Error("Submission failed"));
}
return false;
}
}
});
所以你不需要一个常见的’submit #articleSubmit’来更好地使用auto forms API.
标签:iron-router,javascript,meteor,meteor-autoform 来源: https://codeday.me/bug/20190824/1710905.html