1
_setPrintExportCookieInterval: function(/**String*/requestId, /**function*/closePopup) {
    //have the interval autoexpire after some amount of seconds
    var count = 0;
    var intervalMs = 2000;

    var intervalId = self.setInterval(function() {
        var reportCookie = dojo.cookie(requestId);
        console.debug('requestId ' + requestId);
        if(reportCookie || count > 300000) { //5 mins
            //if there's a status failure, don't close the window
            console.debug('reportCookie ' + reportCookie);
            if(reportCookie == undefined){
                console.debug("print/export request returned with undefined status ");
            } else if(reportCookie == "success") {
                closePopup();
            }  else{
                console.debug("print/export request returned with nonstandard status " + reportCookie);
            }
            window.clearInterval(intervalId);
            //delete the cookie
            dojo.cookie(requestId, null, {path: "/", expires: -1});
            //destroy the iframe
            //dojo.destroy(dojo.byId(requestId));
        };
        count+=intervalMs;
    }, intervalMs);

    return intervalId;
},

我在使用上述 javascript 函数时遇到问题。问题通常是有时:

var reportCookie = dojo.cookie(requestId);

返回null,但是当我查看浏览器的调试工具时,我可以看到 cookie 存在的值为success. 此函数每调用 10 次就会发生一次。有什么想法为什么dojo.cookie()只能在某些时候通过 ID 查找 cookie?

4

1 回答 1

1

确保在检索 cookie 时指定路径,否则默认为当前位置。这将允许您从域中的任何路径获取 Cookie。

dojo.cookie(requestId, null, {path: "/" });

于 2012-10-25T18:13:45.443 回答