DS.JSONSerializer#_normalizeResponse()

_normalizeResponse (store, primaryModelClass, payload, id, requestType, isSingle) Objectprivate Defined in addon/serializers/json.js:444 Parameters: store DS.Store primaryModelClass DS.Model payload Object id String|Number requestType String isSingle Boolean Returns: Object JSON-API Document

ArrayProxy#arrangedContent

arrangedContentprivate Defined in packages/ember-runtime/lib/system/array_proxy.js:88 The array that the proxy pretends to be. In the default ArrayProxy implementation, this and content are the same. Subclasses of ArrayProxy can override this property to provide things like sorting and filtering.

DS.Store#findRecord()

findRecord (modelName, id, options) Promise Defined in addon/-private/system/store.js:461 Available since 1.13.0 This method returns a record for a given type and id combination. The findRecord method will always resolve its promise with the same object for a given type and id. The findRecord method will always return a promise that will be resolved with the record. Example app/routes/post.js import Ember from 'ember'; export default Ember.Route.extend({ model: function(params) { ret

String#fmt()

fmt (str, formats) Stringdeprecatedpublic Defined in packages/ember-runtime/lib/system/string.js:155 Use ES6 template strings instead: http://babeljs.io/docs/learn-es2015/#template-strings Apply formatting options to the string. This will look for occurrences of "%@" in your string and substitute them with the arguments you pass into this method. If you want to control the specific order of replacement, you can add a number after the key as well to indicate which argument you want to inse

String#resolveHelper()

resolveHelper (name) Helperprivate Defined in packages/ember-htmlbars/lib/system/lookup-helper.js:16 Used to lookup/resolve handlebars helpers. The lookup order is: Look for a registered helper If a dash exists in the name: Look for a helper registed in the container. Use Ember.ComponentLookup to find an Ember.Component that resolves to the given name. Parameters: name String The name of the helper to lookup. Returns: Helper

DS.Errors#_add()

_addprivate Defined in addon/-private/system/model/errors.js:241 Adds error messages to a given attribute without sending event.

InstrumentationSupport

Ember.InstrumentationSupport Class PUBLIC Defined in: packages/ember-views/lib/mixins/instrumentation_support.js:8 Module: ember-views

DS.JSONSerializer#_getMappedKey()

_getMappedKey (key) Stringprivate Defined in addon/serializers/json.js:795 Looks up the property key that was set by the custom attr mapping passed to the serializer. Parameters: key String Returns: String key

Route#serializeQueryParam()

serializeQueryParam (value, urlKey, defaultValueType) private Defined in packages/ember-routing/lib/system/route.js:390 Serializes value of the query parameter based on defaultValueType Parameters: value Object urlKey String defaultValueType String

Enumerable#hasEnumerableObservers

hasEnumerableObserversBooleanprivate Defined in packages/ember-runtime/lib/mixins/enumerable.js:926 Becomes true whenever the array currently has observers watching changes on the array.