3

大家好,我已经在这个问题上停留了一段时间。我目前正在使用 dojo.xhrget 将 json 数据作为文本放到我的 html 页面上。目前我在 safari 上不断收到错误,我相信由于跨域问题,它似乎没有响应其他浏览器 -

" An unexpected error occurred: RequestError: Unable to load 171.51.21.41:3000/information.json status: 0"

我曾尝试使用 dojo.io.script,但它仍然是空白的。我怀疑由于某种原因它无法读取我的 json 数据 - 任何帮助将不胜感激。

require(["dojo"], function(dojo){

dojo.ready(function(){
// Look up the node we'll stick the text under.
var targetNode = dojo.byId("licenseContainer");

// The parameters to pass to xhrGet, the url, how to handle it, and the callbacks.
var xhrArgs = {
url: "171.51.21.41:3000/information.json ",
handleAs: "json",
load: function(data){
  // Replace newlines with nice HTML tags.
  data = data.replace(/\n/g, "<br>");

  // Replace tabs with spaces.
  data = data.replace(/\t/g, "&nbsp;&nbsp;&nbsp;");

  targetNode.innerHTML = data;
},
error: function(error){
  targetNode.innerHTML = "An unexpected error occurred: " + error;
}
}

 // Call the asynchronous xhrGet
 var deferred = dojo.xhrGet(xhrArgs);
});

});

我借用了这段代码并进行了编辑。我知道错误语句是由于错误函数而出现的;但我想知道为什么以及如何访问 json。

先谢谢了~

我的 JSON 片段:

[{"id":1,"Field":"Devices","Phase":"Final","Name":"MP3 Player"}]
4

1 回答 1

0

您需要http://输入您的 xhrArgs 网址

于 2012-12-20T07:29:36.150 回答