Meteor、Mantra、FlowRouter - 将多个参数传递给容器

Meteor, Mantra, FlowRouter - Passing more than one parameter to container

我正在尝试将多个参数传递给 Mantra 容器,如下所示:

FlowRouter.route('/cargarDatos/:fechaInicial/:consecutivos', {
name: 'cargarDatos.iniciar',
action({fechaInicial, consecutivos}) {
  mount(MainLayoutCtx, {
    content: () => (<CargarDatos fechaInicial={fechaInicial} consecutivos={consecutivos} />),
    footer: <PiePágina />
  });
}

似乎我做错了什么,因为在 CargarDatos 容器中无法识别变量。有人可以帮忙吗?

如果我只放置一个参数,一切正常。

提前致谢。

语法正确,问题出在容器代码中。