gpt4 book ai didi

javascript - 如何传递 promise 数组而不调用它们?

转载 作者:行者123 更新时间:2023-11-28 16:44:45 24 4
gpt4 key购买 nike

我尝试将 axios 数组(作为 promise )传递给函数。当我调用该方法时,我需要执行这些 promise 。

const arrayOfAxios = [
axios('https://api.github.com/')
]

setTimeout(() => {
console.log('before call promise');

Promise.all(arrayOfAxios).then(res => {

console.log({ res });
});

}, 5000);
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.2/axios.js" integrity="sha256-bd8XIKzrtyJ1O5Sh3Xp3GiuMIzWC42ZekvrMMD4GxRg=" crossorigin="anonymous"></script>

在我的代码中,我可以立即看到https://api.github.com/。而不是当我调用 promise.all 时。

我做错了吗?还有另一种方法可以设置 promise 数组并稍后调用它们吗? (我的意思是 axios 示例)

最佳答案

Promise 不会运行任何东西,它们只是观察正在运行的东西。因此,并不是您不想调用 promise ,而是您不想启动他们正在观察的事情。当您调用 axios(或其他)时,它已经启动了它返回的 Promise 所观察到的进程。

如果您不想启动该进程,请不要调用axios(等等)。例如,您可以在数组中放置一个调用它的函数,然后在准备好开始工作时调用它:

const arrayOfAxios = [
() => axios('https://api.github.com/') // *** A function we haven't called yet
];

setTimeout(() => {
console.log('before call promise');

Promise.all(arrayOfAxios.map(f => f())).then(res => {
// −−−−−−−−−−−−−−−−−−−−−−−−−−−−^^^^^^^^ *** Calling the function(s)
console.log({ res });
});

}, 5000);

或者,如果您对数组中的所有条目执行相同的操作,请存储该操作所需的信息(例如 axios 的 URL 或选项对象):

const arrayOfAxios = [
'https://api.github.com/' // *** Just the information needed for the call
];

setTimeout(() => {
console.log('before call promise');

Promise.all(arrayOfAxios.map(url => axios(url))).then(res => {
// −−−−−−−−−−−−−−−−−−−−−−−−−−−−^^^^^^^^^^^^^^^^^ *** Making the calls
console.log({ res });
});

}, 5000);

关于javascript - 如何传递 promise 数组而不调用它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60666601/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com