Total.js 自定义系统视图

Total.js Custom System View

我想使用 controller.view500(err) 并显示自定义系统视图。

如何显示自定义系统视图500、400?

https://docs.totaljs.com/latest/en.html#api~FrameworkController~controller.view

谢谢

函数 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

可用