2017-01-17 57 views

回答

2

功能view500實際上不提供任何看法。這只是throw500的別名。

如果你想呈現一個視圖中,您可以定義自定義路線是這樣的:

F.route('#500', function(){ 
    // You need to create the view '500.html' file yourself in views folder 
    this.view('500'); 
}); 

然後,每當你使用controller.view500();上述路線將處理它。 您傳遞給view500的錯誤應該在路由控制器中提供,因爲controller.exception

+0

謝謝Molda – Beta