gpt4 book ai didi

javascript - 递归调用api (axios/javascript)

转载 作者:行者123 更新时间:2023-11-29 23:31:40 24 4
gpt4 key购买 nike

我正在尝试使用递归将多个 API 调用的结果填充到一个数组中。我对 ES6 和递归的东西感到头晕,可能需要一些帮助。

这是我当前的代码,它只返回“promise”:

getAllEmployees: function() {
let allEmployees = []; // this array will contain all employees
let pageNumber = 1; // start with page 1
const getThoseEmployees = function(pageNumber) {
return axios.get(rest_url + 'users/?per_page=50&page=' + pageNumber, {
headers: {
'X-WP-Nonce': WPsettings.nonce
},
}).then(response => {
// add the employees of this response to the array
allEmployees = allEmployees.concat(response.data);
pageNumber++;
if (response.headers['x-wp-total'] > allEmployees.length) {
// do me again...
return getThoseEmployees(pageNumber);
} else {
// this was the last page, return the collected contacts
return allEmployees;
}
});
}
return getThoseEmployees();
},


// after "created" in vue
this.allEmployees = this.getAllEmployees(); // returns "promise"

最佳答案

要访问从 Promise 解析的值,您必须使用 Promise 的 .then 方法。因此,this.allEmployees = this.getAllEmployees(); 不是这个赋值,而是像这样从 getAllEmployees 访问已解析的值:

this.getAllEmployees()
.then(employees => {
console.log(employees); // make sure this is what you need
this.allEmployees = employees;
});

编辑:回复评论。

您的函数 getAllEmployees 返回 getThoseEmployees 的值,这是一个 promise 。因为 allEmployees 最终返回时位于 .then 的匿名函数内部,所以该值将始终在 getThoseEmployees 返回的 promise 内部>.

// This functions return value is a promise
const getData = () => {
return axios.get('some-url')
.then(data => {
// Anything returned inside of a .then will be
// resolved and can only be accessed with another .then.
// Using .then itself will return another promise object,
// which is why promises can be chained.
return formatThisData(data);
});
};

为了从 getData 访问我想要的格式化数据,我必须从 promise 访问已解析的数据。

getData()
.then(formattedData => {
// formattedData is what was returned from inside the .then above
});

关于javascript - 递归调用api (axios/javascript),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47098871/

24 4 0
文章推荐: javascript - 可以是 String 或 Boolean 的 Spring 和 Json 字段映射
文章推荐: mysql - 如何添加 session 并添加访问 token 以登录 Node
文章推荐: mysql - MySQL 中的数据透视表
文章推荐: php - 数据库