如果第一个处理程序不满足/捕获特定情况,是否可以导航到下一个路由处理程序?
您可以使用next()
方法在Express(nodejs)中实现某些功能。
想象一下,你有这个路由器配置:
routes: {
'*path': 'onPath',
'*notFound': 'onNotFound'
},
onPath: function(path, next){
if(path == 'something'){
console.log('ok');
} else {
next();
}
},
onNotFound: function(){
console.log('KO');
}
我知道我可以混合使用onPath
和onNotFound
方法,但我只想知道是否可行。谢谢!
答案 0 :(得分:0)
首先,我不确定路由器中是否有2个路径匹配器。路由器如何知道使用哪个?这是一个选项。删除notFound路由并直接调用该方法:
routes: {
'*path': 'onPath'
},
onPath: function(path){
if(path == 'something'){
console.log('ok');
} else {
this.onNotFound(path);
}
},
onNotFound: function(path){
console.log('KO');
}
或者更简洁的方法:你可以抛出一个事件(如果可以的话,避免过多的应用程序级事件。这只是一个例子)
App.trigger("pathNotFound", path);
代码中的其他位置(再次,可能不是应用级别),您需要收听此事件:
App.listenTo("pathNotFound", function(){
console.log('KO');
});
这都是大致写的。当然,您需要根据自己的应用进行调整。