带有多个闭包的嵌套XMLHttpRequests是个好主意吗?

时间:2009-11-17 18:52:30

标签: javascript xmlhttprequest greasemonkey closures

我有一个Greasemonkey脚本,可在视频网站的搜索结果页面上运行。脚本的功能是使用javascript链接打开一个带有Flash播放器的新窗口,跳过一些重定向箍,并插入常规链接到所需的FLV文件。

我已将脚本更改为与en.wikipedia.org进行愚蠢但结构相同的事情。我的问题是3嵌套闭包和嵌套的xmlhttprequests是否是解决此问题的最佳方法。


// ==UserScript==
// @name                wiki mod example
// @namespace         http://
// @description         example script
// @include  *wikipedia.org*
// ==/UserScript==

var candidates = document.getElementsByTagName("a");

for (var cand = null, i = 0; (cand = candidates[i]); i++) {
  if (cand.href.match(/\/wiki\/W/)) { // for all articles starting with 'W'
    var progress = document.createElement('span');
    progress.appendChild(document.createTextNode(" Start"));
    cand.parentNode.insertBefore(progress, cand.nextSibling);
    progress.addEventListener("click",
    function(link1) { return function() { // link1 is cand.href
      this.innerHTML = " finding...";

      GM_xmlhttpRequest({method:"GET",url:link1,
        onload:function(p) { return function(responseDetails) {
          // p is is the current progress element
          // the first linked article starting with 'S' is *special*
          var link2 = responseDetails.responseText.match(/\/wiki\/S[^"]+/);
          if(!link2) { p.innerHTML = "failed in request 1"; return;}

          GM_xmlhttpRequest({method:"GET",url:"http://en.wikipedia.org"+link2[0],
            onload:function(p2) { return function(responseDetails) {
              // p2 is p, ie. progress
              // link3 would contain the URL to the FLV in the real script
              var link3 = responseDetails.responseHeaders.match(/Content-Length.+/);
              if(!link3) { p2.innerHTML = "failed in request 2"; return;}

              var elmNewContent = document.createElement('p');
              elmNewContent.appendChild(document.createTextNode(link3));
              p2.parentNode.insertBefore(elmNewContent, p2.nextSibling);
              p2.innerHTML = " <em>Done</em>";
            }}(p) // 3rd closure
          }); // end of second xmlhttprequest

        }}(this) // 2nd closure
      }); // end of first xmlhttprequest

    }}(cand.href), true); // 1st closure and end of addeventlistener
  } 
}

3 个答案:

答案 0 :(得分:3)

好吧,你可以通过为每个阶段创建单独的函数,然后让阶段1调用阶段2等来提高可读性。所以,而不是

request({onload: function(response) {
    request({onload: function(response) {
        request({onload: function(response) {
            alert("psych!");
        }});
    }});
}});

你有

request({onload: doTheNextThing});

function doTheNextThing(responseObject) {
    request({onload: doTheRightThing});
}

function doTheRightThing(responseObject) {
    request({onload: doTheLastThing});
}

function doTheLastThing(responseObject) {
   alert("psych!");
}

答案 1 :(得分:1)

当这变得更复杂时,您可能会考虑使用状态机。 http://www.ibm.com/developerworks/library/wa-finitemach1/

答案 2 :(得分:1)

或者如果它变得更复杂,您可以将Promises移植到您喜欢的JavaScript框架中。 AJAX编程从根本上被打破。我已经这样做了5年 - 后来有40,000行JS尝试解决这个问题。