1

由于某种原因,该功能与 Firefox 一起冻结,直到它从请求的站点完全检索到流。是否有任何机制可以防止冻结,所以它按预期工作?

在 XUL

<statusbarpanel id="eee_label" tooltip="eee_tooltip" 
      onclick="eee.retrieve_rate(event);"/>

Javascript

retrieve_rate: function(e)
 {
  var ajax = null;
  ajax = new XMLHttpRequest();
  ajax.open('GET', 'http://site.com', false);
  ajax.onload = function()
  {
   if (ajax.status == 200)
   {
    var regexp = /blabla/g;
    var match = regexp.exec(ajax.responseText);
    while (match != null)
    {
     window.dump('Currency: ' + match[1] + ', Rate: '
                          + match[2] + ', Change: ' +  match[3] + "\n");
     if(match[1] == "USD")
      rate_USD = sprintf("%s:%s", match[1], match[2]);
     if(match[1] == "EUR")
      rate_EUR = sprintf("%s:%s", match[1], match[2]);
     if(match[1] == "RUB")
      rate_RUB = sprintf("%s/%s", match[1], match[2]);
     match = regexp.exec(ajax.responseText);
    }

    var rate = document.getElementById('eee_label');
    rate.label = rate_USD + "  " + rate_EUR + "  " + rate_RUB;
   }
   else
   {

   }
  };
  ajax.send();

我试图在请求完成window.dump()后立即ajax.send()将其转储到控制台中。

4

1 回答 1

4

您需要通过true作为最后一个参数传递给ajax.open.

请注意,一旦您这样做,该send函数将立即返回,并且它之后的任何代码都将在请求完成之前运行。

于 2010-04-29T14:14:03.697 回答