Jump to content
  • 0

Проблемы с XMLHttpRequest


Odrin
 Share

Question

Добрый день. Вот наткнулся на такую проблему...

Для начала кусок кода -

function SendRequest(xmlRequest)
{
if (xmlhttp != null)
xmlhttp.abort();
xmlhttp = CreateRequest();
xmlhttp.open("POST", clmap.AjaxPath+'?t='+new Date().getTime(), true);
xmlhttp.send(xmlRequest);
}

SendRequest(xmlRequest);
xmlhttp.onreadystatechange = function()
{
if (xmlhttp.readyState == 4)
if(xmlhttp.status == 200)
{
xmlresponse = xmlhttp.responseXML;

Так вот, периодически FF выдает ошибку -

xmlhttp is null

if (xmlhttp.readyState == 4)

В других браузерах тоже эта же проблема возникает.

Как вообще такое может быть, что сначала срабатывает onreadystatechange, а потом xmlhttp оказывается null?

Edited by Odrin
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Ну вот как-то так

xmlhttp = CreateRequest();

function CreateRequest()
{
var Request = false;

if (window.XMLHttpRequest)
{
Request = new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
Request = new ActiveXObject("Microsoft.XMLHTTP");

if (!Request)
{
Request = new ActiveXObject("Msxml2.XMLHTTP");
}
}
return Request;
}

Вот тут баг лисы описывается - https://bugzilla.mozilla.org/show_bug.cgi?id=238559

Это не оно? Не силен в английском...

Edited by Odrin
Link to comment
Share on other sites

  • 0

<_<

Я не такой нуб, как вы думаете...

В проблеме разобрался... На странице, идущей перед моей и созданной другим человеком, тож шлется xmlhttp. Ошибка возникает, если перейти на мою страницу до того, как эти запросы завершатся.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy