我目前通过在routes.js中包含此行,将每个页面路由到我的pagesController,这在以前的路线中找不到:
this.match('/:page', { controller: 'pages', action: 'show' });
我有一个想法,让我的PagesController处理服务404,如果没有找到:
PagesController.show = function() {
var page = this.param('page');
if(page != undefined){
page = page.replace(".html","");
try {
this.render("./"+page);
} catch(error){ //Failed to look up view -- not working at the moment =(
this.redirect({action : "404"});
};
}
return;
};
但我的想法失败了。错误无法捕获,因此致命的仍然可以获得。我应该将fn附加到渲染调用吗?有什么论据?它是如何工作的? (/简单问题)。
答案 0 :(得分:6)
它可能看起来像这样:
PagesController.show = function() {
var self = this;
var page = this.param('page');
if (page !== undefined) {
page = page.replace('.html', '');
this.render("./" + page, function(err, html) {
if (! err)
return self.res.send(html);
self.redirect({ action : '404' });
});
} else {
// this will probably never be called, because `page`
// won't be undefined, but still...
this.redirect({ action : '404' });
}
};