The asynchronous function to execute. 要执行的异步函数
The arguments to pass to the function. 要传递给函数的参数
A tuple of [Error, null] if the function throws an error, or [null, Result] if it resolves successfully 如果函数抛出错误,则返回 [Error, null] 元组;如果成功解析,则返回 [null, Result] 元组。
Attempt to execute a function and return the result or error. Returns a Promise that resolves to a tuple where:
Only applicable to asynchronous execution functions
尝试执行函数并返回结果或错误。返回一个解析为元组的 Promise,其中:
仅适用于异步执行函数