0

谁能告诉我如何使用 dojo.io.script 调用休息服务。

try {
  dojo.io.script.get({
    url: "http://search.twitter.com/search.json",
    content: {
      q: "#dojo"
    },
    callbackParamName: "callback"
  }).then(function(data) {

  });
} catch (e) {
  alert(e);
}

我尝试使用上面的代码,但没有得到响应。可能是什么问题呢?

4

1 回答 1

1

您可以像下面这样调用 HTTP GET:

// The "xhrGet" method executing an HTTP GET
dojo.xhrGet({
    // The URL to request
    url: "get-message.php",
    // The method that handles the request's successful result
    // Handle the response any way you'd like!
    load: function(result) {
        alert("The message is: " + result);
    }
});

有关更多信息,请在此处查看文档

另一个例子是here

于 2013-08-09T09:45:35.553 回答