Query Parameters

Query Parameters Query parameters are optional key-value pairs that appear to the right of the ? in a URL. For example, the following URL has two query params, sort and page, with respective values ASC and 2: http://example.com/articles?sort=ASC&page=2 Query params allow for additional application state to be serialized into the URL that can't otherwise fit into the path of the URL (i.e. everything to the left of the ?). Common use cases for query params include representing the current

PromiseProxyMixin#then()

then (callback) RSVP.Promisepublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:165 An alias to the proxied promise's then. See RSVP.Promise.then. Parameters: callback Function Returns: RSVP.Promise

ProxyMixin

Ember.ProxyMixin Class PRIVATE Defined in: packages/ember-runtime/lib/mixins/-proxy.js:43 Module: ember-runtime Ember.ProxyMixin forwards all properties not defined by the proxy itself to a proxied content object. See Ember.ObjectProxy for more details.

ProxyMixin#content

contentEmber.Objectprivate Defined in packages/ember-runtime/lib/mixins/-proxy.js:54 The object whose properties will be forwarded. Default: null

PromiseProxyMixin#reason

reasonpublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:93 If the proxied promise is rejected this will contain the reason provided. Default: null

PromiseProxyMixin#isSettled

isSettledpublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:112 Once the proxied promise has settled this will become true. Default: false

PromiseProxyMixin#promise

promisepublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:139 The promise whose fulfillment value is being proxied by this object. This property must be specified upon creation, and should not be changed once created. Example: Ember.ObjectProxy.extend(Ember.PromiseProxyMixin).create({ promise: <thenable> });

PromiseProxyMixin#isRejected

isRejectedpublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:121 Will become true if the proxied promise is rejected. Default: false

PromiseProxyMixin#finally()

finally (callback) RSVP.Promisepublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:190 Available since 1.3.0 An alias to the proxied promise's finally. See RSVP.Promise.finally. Parameters: callback Function Returns: RSVP.Promise

PromiseProxyMixin#catch()

catch (callback) RSVP.Promisepublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:177 Available since 1.3.0 An alias to the proxied promise's catch. See RSVP.Promise.catch. Parameters: callback Function Returns: RSVP.Promise