Perl CGI Meta标签
|
每个http://perldoc.perl.org/CGI.html制作元标记,都会给出以下示例:
print start_html(-head=>meta({-http_equiv => \'Content-Type\',-content => \'text/html\'}))
但是使用以下代码:
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
my $cgi = new CGI;
$cgi->autoEscape(undef);
$cgi->html({-head=>meta({-http_equiv => \'Content-Type\',-content => \'text/html\',-charset=>\'utf-8\'}),-title=>\'Test\'},$cgi->p(\'test\'));
我收到以下错误:
$ perl test.cgi未定义子程序
&main :: meta在test.cgi第8行调用。
我正在尝试生成以下标签:
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />
没有找到相关结果
已邀请:
3 个回复
谷靛
时,
子项不会自动导入。试试看
(或
)。
号拳藐孔妇
但是,您是否100%确定要使用CGI进行Web开发,而不是像PSGI / Plack这样更好的东西?
烫珊
我只是在meta的fromt中添加了$ cgi->。