我想为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();
});
}
但是,根本没有调用服务器端,我只在服务器上获取没有控制台日志的模板。
我该如何做到这一点?