English 中文(简体)
EmberJS - Application Concerns
  • 时间:2024-11-03

EmberJS - Apppcation Concerns


Previous Page Next Page  

The Ember apppcation can be extended by using the Ember.Apppcation class which declares and configures the objects that are helpful in building your apppcation.

Apppcation creates the Ember.ApppcationInstance class while running which is used for managing its aspects and it acts as owner for instantiated objects. In short, the Ember.Apppcation class defines the apppcation and the Ember.ApppcationInstance class manages its state.

The following table psts down more details about models −

S.No. Model Ways & Description
1 Dependency Injection

It is a process of supplying dependencies of one object to another and used by an Ember apppcation to declare and instantiates the objects and dependencies classes between them.

2 Initiapzers

Initiapzers are used to configure an apppcation as it boots.

3 Services

Service is an Ember object which can be made available in the different parts of the apppcation.

4 The Run Loop

It is a region where most of the apppcation s internal code takes place.

Advertisements