0

我在 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,但看不到配件和礼品,但两种页面类型使用相同的代码....

4

1 回答 1

0

我已经找到了公式语言 cookie 代码的问题,经过一些调整后可以正常工作。最大的问题(未记录)是因为 cookie 最初存储在浏览器缓存中,所以您不会在加载的第一页上看到 http_cookie 中的 cookie 值,只有在刷新时。

解决方案的其余部分围绕使用 webqueryopen 代理检查 http_cookie 字段和计算的 cookie 字段以及其他与浏览器相关的 cgi 字段来判断访问是来自搜索机器人还是人类,因为我不需要担心购物车对于搜索机器人。

我不得不说这是一个令人沮丧的练习,主要是因为它的文档记录太差,如果有更好的文档和帮助可用于 domino 应用程序开发,也许 Domino 会(可能仍然有)更多的浏览器应用程序里程。它并没有让我失望,但这一次我有时间去追求它,直到找到解决方案,因为它是一个个人项目,而不是为客户支付的工作。

于 2011-12-17T15:14:59.177 回答