在Meteor中使用flow router和iron router?
Use flow router and iron router in Meteor?
我在 Meteor 应用程序中使用流路由器进行客户端路由。我需要在服务器端使用路由器来公开 webhook。所以,我插入了 iron router,但 iron router 现在将 html 注入我的应用程序,抱怨我需要在应用程序中配置路由。我猜它认为至少应该存在一个客户端路由,呃?我在服务器中实现了一个 iron router 路由,如下所示:
Router.map(function() {
this.route('webhooks', {
layoutTemplate: null,
path: '/webhooks/:source',
where: 'server'
})
.post(function() {
// auth, stuff happens, etc //
this.response.end('Thank you, come again!');
});
});
是否有一些配置可以添加到 iron 路由器中,让它冷静下来?
您可能想改用选择器
https://github.com/meteorhacks/picker/
它被设计为 meteor 的专用服务器端路由器。
FlowRouter 也推荐https://kadira.io/academy/meteor-routing-guide/content/server-side-routing-rest
我在 Meteor 应用程序中使用流路由器进行客户端路由。我需要在服务器端使用路由器来公开 webhook。所以,我插入了 iron router,但 iron router 现在将 html 注入我的应用程序,抱怨我需要在应用程序中配置路由。我猜它认为至少应该存在一个客户端路由,呃?我在服务器中实现了一个 iron router 路由,如下所示:
Router.map(function() {
this.route('webhooks', {
layoutTemplate: null,
path: '/webhooks/:source',
where: 'server'
})
.post(function() {
// auth, stuff happens, etc //
this.response.end('Thank you, come again!');
});
});
是否有一些配置可以添加到 iron 路由器中,让它冷静下来?
您可能想改用选择器
https://github.com/meteorhacks/picker/
它被设计为 meteor 的专用服务器端路由器。
FlowRouter 也推荐https://kadira.io/academy/meteor-routing-guide/content/server-side-routing-rest