0

我正在开发一个网页,使用隐藏框架技术从服务器检索一些数据。数据实时更新,服务器每次修改都会通知浏览器。

该组件在 IE 和 Firefox 中都可以工作,但在 chrome 中,服务器检索到的回调函数不会在客户端浏览器中执行。但是我可以看到在开发人员工具中打开的连接,并且通过该连接接收到的数据在增长。

我读过一些浏览器在解析和执行从服务器接收到的数据时可能会出现问题,但我无法为这些情况找到解决方案。

也许我需要向这种情况发送一些 http 标头,但我什至不知道要搜索什么。

编辑:代码示例这是我用来连接服务器的功能。在登录步骤之后调用它。登录的实现方式与连接步骤相同。

function __sendConnectRequest()
{
    document.getElementById(UID).setAttribute('value', __username);  
    document.getElementById(SID).setAttribute('value', __sessionKey);
    document.getElementById(PID).setAttribute('value', __privateKey);
    try
    {
        document.getElementById('connectFormId').submit();  
    }
    catch (err)
    {
        alert("error connecting");
        console.log("__sendConnectRequest: " + err.message);
    }    
}


var __connectResponseCallback = null;
function __setConnectResponseCallback(callback)
{
    __connectResponseCallback = callback;
}

function __connectResponseHandler(statusCode)
{
     if(__connectResponseCallback)
     {
        __connectResponseCallback(statusCode);       
     }
}

这就是我创建 DOM 元素的方式。这些元素被附加到文档的正文中,并且表单有一些输入字符串。

function getNewIframe(name, id)
{
    //KNOWN BUG IN IE while creating iframes
    //http://webbugtrack.blogspot.com/2007/10/bug-235-createelement-is-broken-in-ie.html
    var iframe;
    try
    {
        iframe = document.createElement('<iframe name="' + name + '">');
    }
    catch (ex)
    {
        iframe = document.createElement('iframe');
        iframe.name = name;
    }
    iframe.id = id;
    iframe.style.display = 'none';
    return iframe;
}    

function getNewForm(name, id, target, action)
{
    var form = document.createElement("form");
    form.name = name;
    form.id = id;
    form.method = 'post';
    form.target = target;
    form.action = serverUrl+action; 
    form.style.display = 'none';
    return form;
}    
4

1 回答 1

0

multipart/x-mixed-replace通过在服务器响应中添加标头解决了该解决方案。这样,数据以块的形式执行,浏览器不需要等待所有响应被接收。

这似乎是彗星技术的旧标准。

于 2013-06-12T09:41:28.810 回答