如何使用自动表单和iron路由器重定向到新页面

How to redirect to a new page using auto form and iron router?

本文关键字:路由器 重定向 新页面 iron 何使用 表单      更新时间:2023-09-26

所以我使用autoform构建了一个自动表单。我想在表单提交后重定向到显示新模板的新页面。我该怎么做??

这是我的html代码:终极游戏

<body>
  <div class="container">
  <div class="navbar"><h1>The Ultimatum Game</h1></div>
 {{> player}}
  </div>
</body>
<template name="player">
  {{> quickForm collection="PlayersList" id="insertList" type="insert"       }}
</template>

如何在用户提交后将其重定向到新的问答页面。

在事件处理程序中进行重定向

Template.player.events({
  'submit form': function(e, t) {
    Router.go('newPath');
  },
});