English 中文(简体)
使用 xhrpard dojo 的匿名 js 函数函数不返回数据
原标题:anonymous js function with xhrpost dojo not returning data
d>var cType = 函数(templateId){ dojo.xhrPost ({ url : “/ medication1.0.1/ intemplate/ get ColectorType”, 控点As : “text”, 页头 As : {"Content-Type" :"text/html"}, 后数据: 模板Id, 装载: 函数( data) {返回数据;\\\\ }} } ;

当我用 cType( with someId)调用 cType)调用此函数时, 我没有得到定义。 即使我使用本地变量和指定数据给该变量, 返回该变量也无帮助 。

最佳回答

问题是您的 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

问题回答

暂无回答


上一篇:
下一篇:


相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签