Prancer::Plugin::Xslate插件提供了访问模板引擎的功能,可以通过应用配置文件和导出关键字访问所配置的引擎。该插件支持在Prancer应用程序的配置文件中进行基本配置,也可以在运行时通过render参数配置所有选项。配置文件中的设置可以通过template配置块开始,并将所有选项放在该块下。例如:
template:
cache_dir: /path/to/cache
verbose: 2
Text::Xslate的任何选项都可以在配置文件中进行设置,并在应用程序中使用模板引擎。使用方法如下:
use Prancer::Plugin::Xslate qw(render);
my $plugin = Prancer::Plugin::Xslate->load();
$plugin->add_module("D");
暂无评论