timersPromises.setTimeout([delay[, value[, options]]])
添加于:v15.0.0
参数
delay
<number> 在履行承诺之前等待的毫秒数。 默认:1
。value
<any> 实现承诺的值。options
<Object>ref
<boolean> 设置为false
以指示计划的Timeout
不应要求 Node.js 事件循环保持活动状态。 默认:true
。signal
<AbortSignal> 一个可选的AbortSignal
,可用于取消计划的Timeout
。
import { setTimeout, } from 'timers/promises'; const res = await setTimeout(100, 'result'); console.log(res); // Prints 'result'
const { setTimeout, } = require('node:timers/promises'); setTimeout(100, 'result').then((res) => { console.log(res); // Prints 'result' });
相关用法
- Node.js timersPromises.setImmediate([value[, options]])用法及代码示例
- Node.js timersPromises.setInterval([delay[, value[, options]]])用法及代码示例
- Node.js timersPromises.scheduler.wait(delay[, options])用法及代码示例
- Node.js tlsSocket.authorized用法及代码示例
- Node.js assert.CallTracker tracker.report()用法及代码示例
- Node.js tls.DEFAULT_MAX_VERSION用法及代码示例
- Node.js tlsSocket.disableRenegotiation()用法及代码示例
- Node.js tlsSocket.address()用法及代码示例
- Node.js assert.CallTracker tracker.calls([fn][, exact])用法及代码示例
- Node.js tlsSocket.remoteAddress用法及代码示例
- Node.js assert.CallTracker tracker.verify()用法及代码示例
- Node.js tlsSocket.setMaxSendFragment()用法及代码示例
- Node.js tlsSocket.getProtocol()用法及代码示例
- Node.js trim()用法及代码示例
- Node.js tlsSocket.exportKeyingMaterial()用法及代码示例
- Node.js tls.DEFAULT_ECDH_CURVE用法及代码示例
- Node.js tty.WriteStream.hasColors([count][, env])用法及代码示例
- Node.js tlsSocket.getPeerFinished()用法及代码示例
- Node.js tlsSocket.getFinished()用法及代码示例
- Node.js text转speech用法及代码示例
- Node.js tlsSocket.authorizationError用法及代码示例
- Node.js tlsSocket.getPeerCertificate()用法及代码示例
- Node.js transform._transform(chunk, encoding, callback)用法及代码示例
- Node.js tlsSocket.localAddress用法及代码示例
- Node.js tlsSocket.getSession()用法及代码示例
注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 timersPromises.setTimeout([delay[, value[, options]]])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。