--- title: AsyncFunction slug: Web/JavaScript/Reference/Global_Objects/AsyncFunction translation_of: Web/JavaScript/Reference/Global_Objects/AsyncFunction ---
Async
Function
建構子建立一個新的 {{jsxref("Statements/async_function", "async function")}} 物件。在 JavaScript 中,每一個非同步函數實際上是一個 AsyncFunction
物件。
注意 AsyncFunction
不是一個全域物件。 它可以以下程式碼獲得。
Object.getPrototypeOf(async function(){}).constructor
new AsyncFunction([arg1[, arg2[, ...argN]],] functionBody)
arg1, arg2, ... argN
x
", "theValue
", or "a,b
".functionBody
{{jsxref("Statements/async_function", "async function")}} objects created with the AsyncFunction
constructor are parsed when the function is created. This is less efficient than declaring an async function with an {{jsxref("Statements/async_function", "async function expression")}} and calling it within your code, because such functions are parsed with the rest of the code.
All arguments passed to the function are treated as the names of the identifiers of the parameters in the function to be created, in the order in which they are passed.
Note: {{jsxref("Statements/async_function", "async functions")}} created with the AsyncFunction
constructor do not create closures to their creation contexts; they are always created in the global scope. When running them, they will only be able to access their own local variables and global ones, not the ones from the scope in which the AsyncFunction
constructor was called. This is different from using {{jsxref("Global_Objects/eval", "eval")}} with code for an async function expression.
以函數的方式執行 AsyncFunction
建構式 (不使用 new
運算子) 和以建構子的方式執行是等效的。
AsyncFunction.length
AsyncFuction
建構子的長度為 1。AsyncFunction
原型物件AsyncFunction
實例AsyncFunction
實例繼承 {{jsxref("AsyncFunction.prototype")}} 的屬性和方法. 和所有的建構子一樣,變更該建構子 (constructor) 的原型物件 (prototype object)將會影響所有的 AsyncFunction
實例。
AsyncFunction
建構子建立一個非同步函數function resolveAfter2Seconds(x) { return new Promise(resolve => { setTimeout(() => { resolve(x); }, 2000); }); } var AsyncFunction = Object.getPrototypeOf(async function(){}).constructor var a = new AsyncFunction('a', 'b', 'return await resolveAfter2Seconds(a) + await resolveAfter2Seconds(b);'); a(10, 20).then(v => { console.log(v); // prints 30 after 4 seconds });
Specification | Status | Comment |
---|---|---|
{{SpecName('ESDraft', '#sec-async-function-objects', 'AsyncFunction object')}} | {{Spec2('ESDraft')}} | Initial definition in ES2017. |
{{Compat("javascript.builtins.AsyncFunction")}}