DS.RESTAdapter#host

host{String} Defined in addon/adapters/rest.js:367 An adapter can target other hosts by setting the host property. app/adapters/application.js import DS from 'ember-data'; export default DS.RESTAdapter.extend({ host: 'https://api.example.com' }); Requests for the Post model would now target https://api.example.com/post/.

DS.Snapshot#belongsTo()

belongsTo (keyName, options) (DS.Snapshot|String|null|undefined) Defined in addon/-private/system/snapshot.js:161 Returns the current value of a belongsTo relationship. belongsTo takes an optional hash of options as a second parameter, currently supported options are: id: set to true if you only want the ID of the related record to be returned. Example // store.push('post', { id: 1, title: 'Hello World' }); // store.createRecord('comment', { body: 'Lorem ipsum', post: post }); commentSnaps

ContainerDebugAdapter

Ember.ContainerDebugAdapter Class PUBLIC Extends: Ember.Object Defined in: packages/ember-extension-support/lib/container_debug_adapter.js:16 Module: ember-extension-support The ContainerDebugAdapter helps the container and resolver interface with tools that debug Ember such as the Ember Extension for Chrome and Firefox. This class can be extended by a custom resolver implementer to override some of the methods with library-specific code. The methods likely to be overridden are: canCatalog

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

Container#factoryCache

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

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

Route#serializeQueryParamKey()

serializeQueryParamKey (controllerPropertyName) private Defined in packages/ember-routing/lib/system/route.js:379 Serializes the query parameter key Parameters: controllerPropertyName String

DS.RESTAdapter#namespace

namespace{String} Defined in addon/adapters/rest.js:349 Endpoint paths can be prefixed with a namespace by setting the namespace property on the adapter: app/adapters/application.js import DS from 'ember-data'; export default DS.RESTAdapter.extend({ namespace: 'api/1' }); Requests for the Post model would now target /api/1/post/.

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.