我正在尝试使用粘贴的该功能通过我的node.js服务器从一系列跨域URL中获取html代码。如果我异步进行此操作,则可以成功获取所需的html。但是,我很难让此功能之外的所有其他功能正常工作。就像我现在所拥有的那样,同步执行此操作可使该函数之外的所有内容按应有的方式工作,但我的ajax调用均未成功,并且this.url是未定义的。

我正在使用jquery节点模块来完成此操作。

这是在控制台中记录的错误:
[TypeError:无法读取未定义的属性'headers']

任何帮助将不胜感激。

function myFunction( catname, myurl ){

var htmlresult="";

  $.ajax({
    type: "GET",
    url : "http://"+myurl,
    dataType: 'html',
    context: this,
    async: false,
    cache: false,
    error: function(xhr, status, ethrown){
      console.log("THERE WAS AN ERROR");
      console.log(this.url);
      console.log(catname);
      console.log(status);
      console.log(ethrown);

      htmlresult = myurl;
    },
    success : function(result){
      console.log(this.url);
      console.log("SUCCESS");
      console.log(catname);
      //console.log(result);

      htmlresult = result;
    }
})

return htmlresult;
}


感谢您抽出时间来阅读。

最佳答案

在这种情况下,您不应真正使用同步请求模式来完成工作。
如果您正在使用节点并希望以同步方式执行某些工作,则应使用Promise / Deffered概念。见下面的例子

var Deferred = require("promised-io/promise").Deferred;
var def = new Deferred();

request(this.getUrl("statusObject"), function(err, resp, body) {
    if(!err){
        def.resolve(body);
    }
}

def.promise.then(function(val){
    //Do something.
});

07-24 19:12
查看更多