我正在使用HTTP::Server::Simple::CGI
print $cgi->header("text/plain"),
$cgi->start_html("Hello"),
$cgi->h1("Hello $who!"),
$cgi->end_html;
有类似$cgi->start_text("hello")
的内容吗?
我想输出纯文本。
答案 0 :(得分:7)
只需打印出来......
print $cgi->header("text/plain"),
"hello";