gpt4 book ai didi

javascript - JS Async/Await 不能与 forEach 结合使用

转载 作者:行者123 更新时间:2023-11-30 14:34:47 25 4
gpt4 key购买 nike

这是我正在使用的代码(IP 地址因显而易见的原因被审查):

async function buildJobsView() {
let jobList = await getJobs()
Promise.all([getJobs()]).then($("#jobsPane").text(jobList))
}

async function getJobs() {
//Open API connection and submit
var url = "http://IPADDRESS:8082/api/jobs?IdOnly=true"
var xhr = new XMLHttpRequest()
xhr.open("GET", url, true)
xhr.send()
xhr.onreadystatechange = function() {
if(xhr.readyState == 4 && xhr.status == "200") {
return xhr.response
}
}
}

无论出于何种原因,jobList 变量都在 getJobs() 函数完成运行之前被赋值。 getJobs() 函数最终确实返回了正确的输出,但是代码已经继续了。我做错了什么?

最佳答案

async 不会自动将基于回调的代码转换为基于 Promise 的代码 - 您必须显式地将回调转换为 Promise 并在您希望能够将其用作一个 promise 。

function getJobs() {
return new Promise((resolve) => {
//Open API connection and submit
var url = "http://IPADDRESS:8082/api/jobs?IdOnly=true"
var xhr = new XMLHttpRequest()
xhr.open("GET", url, true)
xhr.send()
xhr.onreadystatechange = function() {
if(xhr.readyState == 4 && xhr.status == "200") {
resolve(xhr.response)
}
}
});
}

然后,getJobs 将返回一个 Promise,然后您可以使用 await 来消费它:

const jobList = await getJobs()

关于javascript - JS Async/Await 不能与 forEach 结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50593724/

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