0
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)で呼び出すと、未定義になります。ローカル変数を取得してその変数にデータを割り当てても、その変数を返すことも役に立ちません。

4

1 に答える 1

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

于 2012-05-24T10:02:46.760 に答える