我正在尝试使用Javascript XMLHTTPRequest从grafana加载数据。以下是我的代码,
function populateIframe( ) {
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://username:password@localhost:3000/api/org');
xhr.onreadystatechange = handler;
xhr.send();
function handler() {
debugger;
if (this.readyState === this.DONE) {
if (this.status === 200) {
// this.response is a Blob, because we set responseType above
document.getElementById("iframe").src = URL.createObjectURL(this.response);
} else {
console.error('XHR failed', this);
}
}
}
我得到的状态码为0。我还尝试了Ajax调用以获取Grafana响应,但仍然没有得到任何适当的数据。有人可以指导我解决这个问题。
谢谢。