提交后重定向(在Form.io的托管版本中)

时间:2017-05-09 08:57:59

标签: formio

我们可以在Form.io的云版本中成功提交表单后重定向到另一个页面/表单吗?我正在考虑在用户进行身份验证后重定向到另一个表单,但这也将用于更一般的页面导航。

我看不到任何可以执行此操作的操作,我不认为(如果我错了请纠正我)我可以访问自托管版本教程中讨论的事件。

由于

2 个答案:

答案 0 :(得分:2)

这可以通过在表单渲染器上附加事件处理程序,然后在表单提交后手动重定向来完成。假设您使用ng2-formio作为渲染器,您将按如下方式执行此操作。

<formio src="https://examples.form.io/example" (submit)="(function(submission) {

  window.location.href = 'https://form.io';

})($event)"></formio>

答案 1 :(得分:0)

只需posting a link to the answer from the docs with promises作为参考,因为我发现它们很方便。

Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/example')
.then(function(form) {
  form.on('submit', (submission) => {
    window.location.href = 'https://form.io';
  });
  form.on('error', (errors) => {
    console.log('We have errors!');
  })
});

文档由Travis从接受的答案中写成,顺便说一句。