匿名js函数与xhrpost dojo不返回数据

时间:2012-05-24 08:54:14

标签: javascript dojo

var cType = function(templateId){
        dojo.xhrPost({
            url : "/mediation1.0.1/template/getCollectorType",
            handleAs : "text",
            headers : {"Content-Type":"text/html"},
            postData : templateId,
            load: function(data){
                    return data;
            }});
    };

当我用cType(withSomeId)调用此函数时,我得到了未定义。 即使我使用局部变量并将数据分配给该变量,返回该变量也无济于事。

1 个答案:

答案 0 :(得分:2)

问题是你的cType函数没有返回任何内容。

var cType = function(templateId){
    dojo.xhrPost({
        url : "/mediation1.0.1/template/getCollectorType",
        handleAs : "text",
        headers : {"Content-Type":"text/html"},
        postData : templateId,
        load: function(data){
                return data; 
                // this returns from the the load 
                // function, not the cType function!
        }});

    // You are not returning anything from the cType function.
 };

您应该使用dojo.Deferred来完成您要执行的操作:

var cType = function(templateId){
  var xhrArgs = {
        url : "/mediation1.0.1/template/getCollectorType",
        handleAs : "text",
        headers : {"Content-Type":"text/html"},
        postData : templateId
  };

  return dojo.xhrGet(xhrArgs);
};

var deferred = cType('templateId');
deferred.then(
  function(data){
      // do something with the data...
  },
  function(error){
      // handle an error calling the server...
  }
);

http://dojotoolkit.org/reference-guide/1.7/dojo/xhrGet.html(这是一个显示延迟技术的例子)

http://dojotoolkit.org/reference-guide/1.7/dojo/xhrPost.html