似乎模板工具包没有正确处理编码。
我正在传递template->process
一个文件名(在哪里获取模板),一个哈希引用(包含所有参数)和一个标量引用(在哪里放置输出)然后我将返回它然后将其显示给用户。
当我给它一个带变形符号的字符串时,html输出包括一个黑色菱形,白色问号代替每个字母(但字母数正确)。任何其他角色都很好。
我在调用模板 - >进程之前使用警告打印出字符串,此时它很好,我可以告诉它在template->process
调用期间得到的东西变成了垃圾。
有什么想法吗?
我尝试过使用ENCODING => "utf8"
以及binmode => ":utf8"
,但对输出都没有任何影响。
这是我的代码,其中一些修剪掉的脂肪只是为了显示我对模板>流程的调用,请注意,如果我遗漏了{binmode => 'utf8'}
它就没有效果。
<put variables in hash referenced to by vars>
<print out variables in has referenced to by $var>
my $data;
$template->process( $self->filename, $vars, \$data, {binmode => ':utf8'}) || die "Template process failed: ", $template->error();
return $data;
解决 嘿所有感谢您的回答,问题结果是模板进程完成了它之后的事情,然后我们在输出之前将字符串写入临时文件,因此我们还需要为其设置binmode文件,代码现在看起来像:
<put variables in hash referenced to by vars>
<print out variables in has referenced to by $var>
my $data;
binmode( STDOUT, ":utf8" );
$template->process( $self->filename, $vars, \$data, {binmode => ':utf8'}) || die "Template process failed: ", $template->error();
return $data;
我感谢你们所有的时间:)
答案 0 :(得分:9)
以下代码有效。 $data
,特别是包含的字符串必须是Perl字符串,即正确decode d。请参阅introduction to encoding in the official documentation。
use Template '2.21_02';
my $tt = Template->new({
ENCODING => 'utf8',
# other options …
});
$tt->process(
$template, $data, $output, {binmode => ':utf8'}
) or die $tt->error . ' in ' . $template;
答案 1 :(得分:1)
我的解决方案是ping,并且所有非拉丁字符都在en.po中通过[% loc('string') %]
包含在运行时,这对我来说很好,因为我的模板必须本地化。