Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

PromiseResolver

我們的志工尚未將此文章翻譯為 正體中文 (繁體) 版本。加入我們,幫忙翻譯!

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the spec changes.

The PromiseResolver interface represents an object controlling the state and the result value of a Promise.

Properties

No specific property.

Methods

Doesn't inherit any method.

PromiseResolver.fulfill()
Sets the result value of the associated Promise to the parameter and its state to fulfill. Call the fulfill callbacks or, if the asynch parameter is set to true, queue a task to call them.
PromiseResolver.resolve()
...
PromiseResolver.reject()
Sets the result value of the associated Promise to the parameter and its state to rejected. Call the reject callbacks or if the asynch parameter is set to true, queue a task to call them.

Specification

Specification Status Comment
DOM
The definition of 'PromiseResolver' in that specification.
Living Standard Initial definition

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support Not supported 24 (24)[1] Not supported Not supported Not supported
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support Not supported 24.0 (24)[1] Not supported Not supported Not supported

[1] Nightly of Gecko 24 got an experimental implementation of PromiseResolver, under the initial name of FutureResolver. It got renamed to its final name in the Gecko 25. To disable it, the preference dom.promise.enabled (in Gecko 24, dom.future.enabled) must be switched to false. Note, only Nightly and Dev Edition versions of Firefox get this interface enabled by default. Beta and Release versions of Gecko have them disabled by default.

See also

文件標籤與貢獻者

 此頁面的貢獻者: Sebastianz, teoli, MHasan, kscarfone
 最近更新: Sebastianz,