我正在运行Android Honeycomb 3.2.1,但我无法让浏览器停止接受Cookie。我有以下代码:
first.html:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="cookie.js"></script>
<script type="text/javascript">
setCookie('testing','test cookie',365);
window.location.href = 'second.html';
</script>
</head>
<body>
</body>
</html>
second.html:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="cookie.js"></script>
<script type="text/javascript">
var temp = getCookie('testing');
alert(temp);
</script>
</head>
<body>
</body>
</html>
cookie.js:
function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}
function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
{
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
x=x.replace(/^\s+|\s+$/g,"");
if (x==c_name)
{
return unescape(y);
}
}
return null;
}
现在,如果我关闭cookie并在我的任何桌面浏览器上访问first.html,我会被重定向并获得一个按预期显示为null的警报。
如果我打开我的cookie并在我的任何桌面浏览器上访问first.html,我会被重定向并获得一个警告“预测”测试cookie。
现在,如果我在禁用cookie的Android平板电脑上运行此功能,它始终会在警报中返回“测试cookie”。如果我打开或关闭cookie都没关系。我尝试更改设置,删除Cookie和缓存,重新启动浏览器甚至重新启动平板电脑,所有这些都具有相同的结果。
感谢任何帮助。
答案 0 :(得分:0)
我遇到了同样的问题 - 我们最终检查了服务器上的cookie,如果没有设置cookie,则返回HTTP错误代码。
答案 1 :(得分:0)
您可以尝试使用服务器端代码进行检查。例如,如果您使用JSP。您可以在onLoad或$(document).ready(){}中执行此操作:
<%
String cookieAllowed = "false";
Cookie cookie = new Cookie ("username","value");
cookie.setMaxAge(365 * 24 * 60 * 60);
response.addCookie(cookie);
String cookieName = "username";
Cookie cookies [] = request.getCookies ();
Cookie myCookie = null;
if (cookies != null)
{
//If true then cookies are not null
cookieAllowed = "true";
}
%>
if(! <%=cookieAllowed%>)
{
window.location = "/static/nocookies.html";
}
%>
我确信其他服务器端脚本也应该可以工作。