你好我试图获取XHR的响应(XMLHTTPRequest) 但是我无法获得那种回应。
我尝试过axios但仍然没有工作 我也尝试过这种方法仍然无效
var req = new XMLHttpRequest();
req.responseType = 'json';
req.open('GET', "https://webtools.agelity.com:666/index.aspx?sGUI=4b239d2d-b927-42c9-8f6b-bbbd0d1ab9d2", true);
var jsonResponse;
req.onload = function() {
jsonResponse = req.response;
};
req.send(null);
return jsonResponse;
我想获取以下数据
This is i want to fetch 我能拿到的任何其他方式吗?