我是 perl 编程的初学者
当 fetch 中的值为 null 时,我想执行一部分代码意味着不存在 cookie,如果存在 cookie,则执行另一部分。
但我面临错误:
软件错误:
无法在 /net/rtulmx0100/fs7/www/LabelMeDev_Student/annotationTools/perl/session_test.cgi 第 93 行,<FP> 第 3 行的未定义值上调用方法“值”。
这是我的代码:
%cookies = CGI::Cookie->fetch;
$id = $cookies{'name'}->value;
if($id == null)
{
print "Content-Type: text/plain\n\n" ;
print "hahahah";
}
else{
print "Content-Type: text/plain\n\n" ;
print $id;
}