You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
需要回调,因为 javascript 是一种事件驱动语言。这意味着在侦听其他事件时,javascript 将继续执行而不是等待响应。让我们以第一个函数调用 API 调用(由 setTimeout 模拟)和记录消息的下一个函数为例。
functionfirstFunction(){// Simulate a code delaysetTimeout(function(){console.log("First function called");},1000);}functionsecondFunction(){console.log("Second function called");}firstFunction();secondFunction();Output;// Second function called// First function called
需要回调,因为 javascript 是一种事件驱动语言。这意味着在侦听其他事件时,javascript 将继续执行而不是等待响应。让我们以第一个函数调用 API 调用(由 setTimeout 模拟)和记录消息的下一个函数为例。
从输出中可以看出,javascript 没有等待第一个函数的响应,而是执行了剩余的代码块。因此,回调用于确保某些代码在其他代码完成执行之前不会执行。
The text was updated successfully, but these errors were encountered: