- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
更新:我认为我关于 async/await 的问题比链接的建议更微妙,并且已更新问题的标题以希望更好地反射(reflect)这一点。我特别关心如何启动一些可能需要一段时间的异步工作,但不会影响需要按顺序发生的大部分页面逻辑,然后等待异步工作完成,然后再继续确实依赖于异步逻辑的页面逻辑子集。答案最终基本上是相同的( await Promise.all
),但是对我的问题所接受的答案所提供的清晰度对我来说比链接的答案更有值(value)(在使用 await Promise.all
之前将顺序逻辑抽象到它自己的异步函数中) .
我无法确定这在 javascript 中是否可行(开头标有“XXX”的注释 block 是我正在努力处理的代码(假设任务 1-4 必须按顺序执行,并且无法并行)):
document.addEventListener('DOMContentLoaded', () => {
// Kick off some asynchronous piece of work that potentially takes some
// time (for instance, opening and upgrading an indexedDB) but that should
// not hold up other work that should happen in the meantime (ie: executing
// tasks 1-3).
asynchronousSetup(); // 1000 - 1500 ms of work
// Do a bunch of other stuff that should happen in sequence and as quickly
// as possible (to enable meaningful user interaction in the client).
executeTask1(); // 300 - 400 ms of work
executeTask2(); // 300 - 400 ms of work
executeTask3(); // 300 - 400 ms of work
// XXX Wait for completion of asynchronousSetup() before proceeding with
// any additional work that is also necessary for meaningful user
// interaction in the client, but that requires that the work done in
// asynchronousSetup() is completely finished.
if (/* asynchronousSetup() complete */) {
executeTask4(); // Relies on work done in tasks 1-3 and asynchronousSetup()
}
});
我熟悉 javascript 中的 async/await 和 Promise,但我还没有看到任何演示它们能够完成此类事情,而无需设置间隔或设置间隔(对我来说感觉像是代码味道)在我想确保 asynchronousSetup()
的地方检查某些公共(public)变量的初始化超时在发射前已完成executeTask4()
.
如果我能做到的话,那就太好了:
// ...Same initial code as above.
const initialized = asynchronousSetup();
// ...Same intervening code as above.
if (await initialized) {
executeTask4();
}
假设asynchronousSetup()
适本地装饰有 async
:
async function asynchronousSetup() {
// Logic of asynchronousSetup()
}
但我之前尝试过,但没有成功。
谢谢,如果这是一个显而易见的问题,抱歉;我的搜索或代码实验都没有运气。我有一种感觉,一旦有人指出如何实现这一目标,我会感到非常愚蠢……但我会接受打击;这感觉像是我理解中的一个重大障碍,在我编写能够产生良好用户体验的高性能 JavaScript 之前,我需要克服它;p
最佳答案
如果我没听错的话,您必须同时执行 asyncSetup 和 3 个任务(但这 3 个任务必须按顺序完成)。只有完成所有 4 个任务后,您才想继续执行最后一个任务。像这样的事情似乎可以满足您的要求:
//Provide an async function that does your 3 tasks in the correct order
const doTasks = async () => {
await executeTask1(); // 300 - 400 ms of work
await executeTask2(); // 300 - 400 ms of work
await executeTask3(); // 300 - 400 ms of work
}
document.addEventListener('DOMContentLoaded', async () => {
//Do the setup and the tasks concurrently
await Promise.all([asynchronousSetup(), doTasks()])
//Once all of the previous tasks are done, do the last task
executeTask4()
});
这假设您的所有任务都是异步的,或者返回 Promises。
关于javascript - 在 javascript 中将异步和同步工作与 async/await 和/或 Promise 混合在一起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60980410/
我有带皮肤的 DNN。我的 head 标签有 runat="server"所以我尝试在 head 标签内添加一个标签 "> 在后面的代码中,我在属性中设置了 var GoogleAPIkey。问题是它
我在 Node.JS 中有一个导出模块 exports.doSomethingImportant= function(req, res) { var id = req.params.id; Demo.
我是 F# 的新手,我一直在阅读 F# for Fun and Profit。在为什么使用 F#? 系列中,有一个 post描述异步代码。我遇到了 Async.StartChild函数,我不明白为什么
File 中有一堆相当方便的方法类,如 ReadAll***/WriteAll***/AppendAll***。 我遇到过很多情况,当我需要它们的异步对应物时,但它们根本不存在。 为什么?有什么陷阱吗
我最近开始做一个 Node 项目,并且一直在使用 async 库。我有点困惑哪个选项会更快。在某些数据上使用 async.map 并获取其结果,或使用 async.each 迭代一组用户并将他们的相应
您好,我正在试用 Springs 异步执行器,发现您可以使用 @Async。我想知道是否有可能在 @Async 中使用 @Async,要求是需要将任务委托(delegate)给 @Async 方法在第
我需要支持取消一个函数,该函数返回一个可以在启动后取消的对象。在我的例子中,requester 类位于我无法修改的第 3 方库中。 actor MyActor { ... func d
假设 asyncSendMsg不返回任何内容,我想在另一个异步块中启动它,但不等待它完成,这之间有什么区别: async { //(...async stuff...) for msg
我想用 Mocha 测试异步代码. 我跟着这个教程testing-promises-with-mocha .最后,它说最好的方法是 async/await。 以下是我的代码,我打算将 setTimeo
正如我有限(甚至错误)的理解,Async.StartImmediate 和 Async.RunSynchronously 在当前线程上启动异步计算。那么这两个功能究竟有什么区别呢?谁能帮忙解释一下?
我有一行使用await fetch() 的代码。我正在使用一些调用 eval("await fetch ...etc...") 的脚本注入(inject),但问题是 await 在执行时不会执行从ev
我正在尝试使用 nodeJS 构建一个网络抓取工具,它在网站的 HTML 中搜索图像,缓存图像源 URL,然后搜索最大尺寸的图像。 我遇到的问题是 deliverLargestImage() 在循环遍
我想结合使用 async.each 和 async.series,但得到了意想不到的结果。 async.each([1, 2], function(item, nloop) { async.s
我的代码有问题吗?我使用 async.eachSeries 但我的结果总是抛出 undefined。 这里是我的代码: async.eachSeries([1,2,3], function(data,
我想在 trait 中编写异步函数,但是因为 async fn in traits 还不被支持,我试图找到等效的方法接口(interface)。这是我在 Rust nightly (2019-01-0
async setMyPhotos() { const newPhotos = await Promise.all(newPhotoPromises); someOtherPromise();
async.js 中 async.each 与 async.every 的区别?似乎两者都相同,只是 async.every 返回结果。纠正我,我错了。 最佳答案 每个异步 .each(coll, i
我正在尝试对一组项目运行 async.each。 对于每个项目,我想运行一个 async.waterfall。请参阅下面的代码。 var ids = [1, 2]; async.each(ids,
我的目标是测试 API 调用,将延迟考虑在内。我的灵感来自 this post . 我设计了一个沙箱,其中模拟 API 需要 1000 毫秒来响应和更改全局变量 result 的值。测试检查 500
async.each 是否作为异步数组迭代工作? async.eachSeries 是否作为同步数组迭代工作?(它实际上等待响应) 我问这些是因为两者都有回调,但 async.each 的工作方式类似
我是一名优秀的程序员,十分优秀!