Promise/A+规范(翻译)

142 阅读1分钟

# 1.术语

1.1. 'promise' 是一个带有then 方法的对象或者函数,其行为表现遵循本规范

1.2. 'thenable' 是一个定义then方法的对象或者函数

1.3. 'value'可以是任何合法JavaScript值(包括 undefined, thenable, promise)

1.4. 'exception' 通过 throw 抛出

1.5. 'reason'表示promise被rejected的原因

# 2. 要求

2.1.