我在 Lotus Domino 应用程序中使用了一些旧但可行的 javascript 来设置会话和持久 cookie,它在 Firefox 和 Opera 中运行良好,但在 IE8 中无法运行。如果添加了 html 来停止 IE 缓存页面,但这并没有什么区别。这是代码:
//Persistant and session cookies for shopping cart and
//returning user identification
function makeCartID() {
var part1 = Math.floor(Math.random()*900) + 1000;
var part2 = Math.floor(Math.random()*90) + 100;
return part1.toString() + "-" + part2.toString();
}
//Math.ceil vs Math.floor, document these
function rand(number) {
return Math.ceil(Math.random()*number);
}
// Function to return the value of the cookie specified by "name".
// returns a String object containing the cookie value, or null if cookie not found
function getCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
// Persistent cookie for unique visitors and latent purchases
function setCustCookies() {
var thisCookie = getCookie("fwc_shop");
var myValue = thisCookie;
if( thisCookie == null) {
//Setup the random cookie value
// myValue = new Date();
// var randNum = rand(100);
myValue = makeCartID();
//The expiry date will be 5 years for production
//Starting with 1 day ...
var expiryDate = new Date();
// expiryDate.setDate(expiryDate.getMonth() + 1);
expiryDate.setDate(expiryDate.getDay() + 1);
setCookie("fwc_shop", myValue, expiryDate, "/");
}
// Session cookie for shopping cart, 15 minute default
var minutes = 15; //Testing, 60+ for production
var session = getCookie("fwc_cart");
var scdt = new Date();
var sdt = new Date(scdt.getMilliseconds + (minutes * 60 * 1000));
var sessionVal;
if(session==null){
sessionVal=myValue + "=" + scdt.toGMTString() + "_" + rand(100);
}else{
sessionVal=session;
}
setCookie("fwc_cart", sessionVal, sdt, "/");
}
setCustCookies();
// Function to delete a cookie. (Sets expiration date to current date/time)
function deleteCookie (name) {
var exp = new Date();
exp.setTime (exp.getTime() - 1);
var cval = getCookie (name);
document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
}
//Worth a try from within script library!!
deleteCookie("fwc_persist");
我不认为这是 Lotus Domino 特有的,最奇怪的是我可以看到我在本地服务器上设置的一些 cookie,但无法删除这些我似乎可以在 Firefox 中执行的 cookie,这让我发疯过去三天!!
Firefox 调试器没有报告任何错误,IE 也没有处于调试模式。
更新 - 那天晚些时候,没有解决 javascript 代码问题的方法,但是 from 的计算字段中的以下公式每次都会设置一个会话 cookie,它的原生 Lotus 公式语言与我有一点爱恨交织的关系,但在这个案例非常简单且 100% 可靠!
@If(@BrowserInfo("Cookies");""; @Return("Error: cookies not enabled."));
cookieName:="session";
part1 := @Text(@Round(1000 * @Random));
part2 := @Text(@Round(10000 * @Random));
cookieValue:= part1 + "-" + part2;
result:=cookieName + "="+ cookieValue + ";";
@SetHTTPHeader("Set-Cookie"; result)
ps 这不是我第一次看到当相同的代码在 Mozilla 中工作时 javascript 在 IE 中无法工作的问题,我正在考虑的代码在 IE5 中是可以的,但现在在更高版本的代码中触发时不再工作IE,任何人都可以阐明这一观察结果吗?
9 月 16 日,我在购物车上取得了很大进展,但现在上面的公式已经失效,并且没有根据我所在的页面设置 cookie。在 Firefox 和 Opera 中也是如此。我可以在查看葡萄酒和烈酒类别时看到 cookie,但看不到配件和礼品,但两种页面类型使用相同的代码....