XMLHttpRequest无法在firefox上打开

时间:2015-12-01 20:54:46

标签: javascript ajax firefox

当我尝试将XMLHttpRequest打开到特定的URL时,我收到一条没有调试信息的错误,请求在google chrome上没有错误。

var xmlhttp = new XMLHttpRequest();
try {
  xmlhttp.open('GET', "http://172.17.1.33:8080/divbanco/threadsjson.jsp");
  console.log('Success');
} catch (err) {
  console.log(err);
  console.log(xmlhttp);
}

我是从172.17.1.41运行的,所以我不认为它是跨域调用错误。对http://172.17.1.35:8080/divbanco/threadsjson.jsp的请求也成功。 URL也存在,它返回一个JSON对象:http://pastebin.com/m58fu4E4

2 个答案:

答案 0 :(得分:0)

相关但是,只是想说新的fetch API就在那里。

fetch("http://172.17.1.33:8080/divbanco/threadsjson.jsp")
  .then(response => response.json())
  .then(result => {
     console.log(result)
  })

答案 1 :(得分:-1)

我的坏! Noscript阻止了我对172.17.1.33的请求。我忘了我必须在之前的某个日期允许其他网址的请求。禁用活动插件让我看到了这个问题。