我使用此功能:
var getJSON = function(url, callback) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.responseType = 'json';
xhr.onload = function() {
var status = xhr.status;
if (status === 200) {
callback(null, xhr.response);
} else {
callback(status, xhr.response);
}
};
xhr.send();
};
函数调用:
getJSON('http://localhost:8080/job/'+jobName+'/lastBuild/api/json?tree=timestamp',
function(err, data) {
if (err !== null) {
console.log('Something went wrong: ' + err);
} else {
console.log('Your query count: ' + data.query.count);
}
});
我收到403错误提示女巫指示需要红衣主教
您可以使用axios库来完成。
var axios = require("axios");
var url = "your-url";
async function getData(url) {
try {
var response = await axios.get(url);
var data = response.data;
console.log(data);
} catch (error) {
console.log(error);
}
};
getData(url);
您需要使用以下方式安装axios库:
npm install axios --save