我正在尝试使用XMLHttpRequest()
点击http://localhost:8080/users/user_objects?_=1500026277756的网址。
var newjson;
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
newjson = this.responseText;
}
};
xhttp.open("GET", "http://localhost:8080/users/user_objects?_=1500026277756", true);
xhttp.send();
}
当上述代码在Google Chrome浏览器的开发者控制台中运行时,代码运行良好。但是当代码在带有脚本数据源作为数据源的BIRT工具中运行时,它会抛出错误。并且错误没有说明任何具体内容。
请帮助我。 XMLhttpRequest()
是我首选的选择。如果那是不可能的,那么无论如何通过点击URL来获取响应数据吗?
我还尝试过ajaxRequest()
和ActiveXObject("MSXML2.XMLHTTP.3.0")
次请求。