我正在尝试使用 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 响应,但仍然没有得到任何正确的数据。有人可以指导我解决这个问题。
提前致谢。