Mason::Plugin::Defer(3pm) | User Contributed Perl Documentation | Mason::Plugin::Defer(3pm) |
Mason::Plugin::Defer - Defer computing parts of output until the end of the request
<head> <title><% $m->defer(sub { $m->page->title }) %></title> % $.Defer {{ % my $content = join(", ", @{ $m->page->meta_content }); <meta name="description" content="<% $content %>"> % }} <body> ...
The defer feature allows sections of output to be deferred til the end of the request. You can set up multiple deferred code blocks which will execute and insert themselves into the output stream at request end.
<title><% $m->defer(sub { $m->page->title }) %></title>
% $.Defer {{ % my $content = join(", ", @{ $m->page->meta_content }); <meta name="description" content="<% $content %>"> % }}
Mason
Jonathan Swartz <swartz@pobox.com>
This software is copyright (c) 2012 by Jonathan Swartz.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2022-05-27 | perl v5.34.0 |