我的应用程序一直在工作,直到我将其更新为Meteor 1.3。现在我收到了这个错误:
Exception in callback of async function: Error: Handler with name 'onBeforeAction' already exists.
at MiddlewareStack._create (http://localhost:3000/packages/iron_middleware-stack.js?hash=8a2aa73e86a32698fb9f60cea452e0ecb2e72b7f:190:13)
at MiddlewareStack.push (http://localhost:3000/packages/iron_middleware-stack.js?hash=8a2aa73e86a32698fb9f60cea452e0ecb2e72b7f:206:22)
at http://localhost:3000/packages/iron_middleware-stack.js?hash=8a2aa73e86a32698fb9f60cea452e0ecb2e72b7f:224:12
at Array.forEach (native)
at Function._.each._.forEach (http://localhost:3000/packages/underscore.js?hash=8de51f9d86e95ae2ffee15a8db324a1decccba3e:139:11)
at MiddlewareStack.append (http://localhost:3000/packages/iron_middleware-stack.js?hash=8a2aa73e86a32698fb9f60cea452e0ecb2e72b7f:220:5)
at http://localhost:3000/packages/iron_middleware-stack.js?hash=8a2aa73e86a32698fb9f60cea452e0ecb2e72b7f:226:19
at Array.forEach (native)
at Function._.each._.forEach (http://localhost:3000/packages/underscore.js?hash=8de51f9d86e95ae2ffee15a8db324a1decccba3e:139:11)
at MiddlewareStack.append (http://localhost:3000/packages/iron_middleware-stack.js?hash=8a2aa73e86a32698fb9f60cea452e0ecb2e72b7f:220:5)
我使用onBeforeAction
的唯一地方是我的铁路由器路由控制器。它们都在同一个router.js
文件中。
我定义了几个路由控制器,首先是扩展ApplicationController
的{{1}},然后是扩展RouteController
的各种控制器。
ApplicationController
从错误消息中我无法找出问题所在或找不到问题。
错误消息中提到的软件包版本为:
ApplicationController = RouteController.extend({
onBeforeAction: function() {
//some code
this.next();
}
});
SomeController = ApplicationController.extend({
onBeforeAction: function() {
//some code
this.next();
}
});
我真的很欣赏正确方向的一些指示。
答案 0 :(得分:6)
如果可以更改路由器并切换到FlowRouter
,我会强烈推荐您。这是目前官方的Meteor路由器,如下所述:Meteor Guide
试试这个:meteor update iron:middleware-stack
。
您的问题似乎与this issue有关,并且已在1.1.0
版本中修复。