gpt4 book ai didi

javascript - 同步与异步 Nodejs

转载 作者:搜寻专家 更新时间:2023-11-01 00:42:00 25 4
gpt4 key购买 nike

我在使用 Mocha 测试框架自动化网页时,遇到了同步代码和异步代码这两个术语。当您发送 HTTP 请求时,我熟悉同步和异步事件……但我从未听说过代码是同步和异步的。任何人都愿意解释......我在之前的问题上看到它与回调有关,但即便如此我仍然对这个概念很困惑。

最佳答案

下面是我的服务器代码的简化版本。我演示了同步代码(在你开始执行一个操作后,直到它完成之前不会开始进一步的操作)和异步代码(你开始执行一个操作,然后继续执行其他操作,并在稍后的某个时间点“回调”或从第一个操作获得结果。)

这有一些重要的后果。几乎每次调用异步函数时:

  • 异步函数的返回值没有用,因为该函数将立即返回,尽管查找结果需要很长时间。

  • 您必须等到回调函数执行后才能访问结果。

  • 调用异步函数后的代码行将在异步回调函数运行之前执行。

例如,我下面的代码中 console.logs 的顺序是:

line 3 - before sync
line 8 - after sync, before async
line 16 - after async call, outside callback
line 14 - inside async call and callback



// synchronous operations execute immediately, subsequent code
// doesn't execute until the synchronous operation completes.
console.log('line 3 - before sync');
var app = require('express')();
var cfgFile = require('fs').readFileSync('./config.json');
var cfg = JSON.parse(cfgFile);
var server = require('http').createServer(app);
console.log('line 8 - after sync, before async');

// When you call an asynchronous function, something starts happening,
// and the callback function will be run later:
server.listen(cfg.port, function(){
// Do things that need the http server to be started
console.log('line 14 - inside async call and callback');
});
console.log('line 16 - after async call, outside callback');

关于javascript - 同步与异步 Nodejs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31257638/

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