在流星中使用铁路由器为客户端和服务器设置相同的路由

时间:2015-10-10 07:34:26

标签: meteor iron-router

我想为POST请求设置路由,其中​​服务器执行某些逻辑,然后客户端为相同的路由加载视图 。因此,例如,我的路线/myRoute将具有:

if (Meteor.isClient) {
  Router.route('/myRoute');
}

if (Meteor.isServer) {
  Router.route('/myRoute', {where: 'server'})
    .post(function() {
      console.log('This is the server side');
      this.next();
    });
}

但是,根本没有调用服务器端,我只在服务器上获取没有控制台日志的模板。

我该如何做到这一点?

0 个答案:

没有答案