perl – Mojolicious lite如何将未找到和服务器错误页面重定向到用户定义的错误页面

前端之家收集整理的这篇文章主要介绍了perl – Mojolicious lite如何将未找到和服务器错误页面重定向到用户定义的错误页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将未找到的用户定义的错误页面和服务器错误页面重定向用户定义页面MojolicIoUs lite

解决方法

您可以在liteapp末尾为自定义页面添加名为exception.html.ep或not_found.html.ep的模板.

例如:

use MojolicIoUs::Lite;
get '/' => sub {
    my $self = shift;
    $self->render(text => "Hello.");
};
app->start;

__DATA__
@@ not_found.html.ep
<!DOCTYPE html>
<html>
  <head><title>Page not found</title></head>
  <body>Page not found <%= $status %></body>
</html>

有关参考,请参阅Mojolicious rendering guide.

The renderer will always try to find exception.$mode.$format.* or not_found.$mode.$format.* before falling back to the built-in default templates.

原文链接:https://www.f2er.com/Perl/171742.html

猜你在找的Perl相关文章