gpt4 book ai didi

perl - 应该使用CGI.pm的header方法来输出Content-Type header吗?

转载 作者:行者123 更新时间:2023-12-01 13:07:18 24 4
gpt4 key购买 nike

如果我在 Perl 中使用 CGI 模块,我可以这样做

$cgi = CGI->new();
$cgi->header(-type=>"text/html");

或者选择经典

print "Content-Type: text/html\r\n\r\n";

我们使用哪个重要吗?两者之间有什么区别吗?两者似乎都有效。

对我来说,如果我无论如何都使用 CGI,我会选择第一个,但如果不是,那么我不会费心只为一个 Action 加载模块。但只是想知道是否有关于这个主题的任何东西?

心理健康

最佳答案

严格来说,你必须打印\r 字符:

print "Content-Type: text/html\r\n\r\n"

是表达你想说的话的合法方式。

一般来说,我会坚持使用 CGI 提供的内容。It allows much more concise and readable code, and CGI knows a lot more about such details than you do.

关于perl - 应该使用CGI.pm的header方法来输出Content-Type header吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2100785/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com