DS.ManyArray#meta

metaObjectpublic Defined in addon/-private/system/many-array.js:124 Metadata associated with the request for async hasMany relationships. Example Given that the server returns the following JSON payload when fetching a hasMany relationship: { "comments": [{ "id": 1, "comment": "This is the first comment", }, { // ... }], "meta": { "page": 1, "total": 5 } } You can then access the metadata via the meta property: post.get('comments').then(function(comments) {

DS.JSONSerializer#_canSerialize()

_canSerialize (key) Booleanprivate Defined in addon/serializers/json.js:826 Check attrs.key.serialize property to inform if the key can be serialized Parameters: key String Returns: Boolean true if the key can be serialized

EventDispatcher#canDispatchToEventManager

canDispatchToEventManagerbooleanprivate Defined in packages/ember-views/lib/system/event_dispatcher.js:110 Available since 1.7.0 It enables events to be dispatched to the view's eventManager. When present, this object takes precedence over handling of events on the view itself. Note that most Ember applications do not use this feature. If your app also does not use it, consider setting this property to false to gain some performance improvement by allowing the EventDispatcher to skip the se

DS.Adapter#findAll()

findAll (store, type, sinceToken, snapshotRecordArray) Promise Defined in addon/adapter.js:123 The findAll() method is used to retrieve all records for a given type. Example app/adapters/application.js import DS from 'ember-data'; export default DS.Adapter.extend({ findAll: function(store, type, sinceToken) { var query = { since: sinceToken }; return new Ember.RSVP.Promise(function(resolve, reject) { Ember.$.getJSON(`/${type.modelName}`, query).then(function(data) {

Container#factoryCache

factoryCacheInheritingDictprivate Defined in packages/container/lib/container.js:57

ApplicationInstance.BootOptions#jQuery

jQueryObjectprivate Defined in packages/ember-application/lib/system/application-instance.js:315 Provide a specific instance of jQuery. This is useful in conjunction with the document option, as it allows you to use a copy of jQuery that is appropriately bound to the foreign document (e.g. a jsdom). This is highly experimental and support very incomplete at the moment. Default: auto-detected

ApplicationInstance.BootOptions#isBrowser

isBrowserbooleanpublic Defined in packages/ember-application/lib/system/application-instance.js:340 Run in a full browser environment. When this flag is set to false, it will disable most browser-specific and interactive features. Specifically: It does not use jQuery to append the root view; the rootElement (either specified as a subsequent option or on the application itself) must already be an Element in the given document (as opposed to a string selector). It does not set up an EventDisp

HistoryLocation#formatURL()

formatURL (url) Stringprivate Defined in packages/ember-routing/lib/location/history_location.js:196 Used when using {{action}} helper. The url is always appended to the rootURL. Parameters: url String Returns: String formatted url

Ember.STRINGS

STRINGSObjectprivate Defined in packages/ember-runtime/lib/index.js:212 Defines the hash of localized strings for the current language. Used by the Ember.String.loc() helper. To localize, add string values to this hash.

Ember.aliasMethod()

aliasMethod (methodName) public Defined in packages/ember-metal/lib/mixin.js:673 Makes a method available via an additional name. App.Person = Ember.Object.extend({ name: function() { return 'Tomhuda Katzdale'; }, moniker: Ember.aliasMethod('name') }); let goodGuy = App.Person.create(); goodGuy.name(); // 'Tomhuda Katzdale' goodGuy.moniker(); // 'Tomhuda Katzdale' Parameters: methodName String name of the method to alias