我在服务器的 cgi 脚本上使用 set-cookie 设置了我的 cookie,如下所示
print "Content-type: text/html\n";
sys.stdout.write(cookie.output())
print "\n\n";
但是当我重新加载页面时,我无法获取 cookie,因为它没有出现在
document.cookie
我如何获得饼干?刷新页面后,Set-cookie : name=value 是否应该出现在 document.cookie 上?
总的来说,我希望客户端能够识别 cookie(如果存在)并采取相应措施
谢谢