- EmberJS - Ember Inspector
- EmberJS - Configuring Ember.js
- EmberJS - Application Concerns
- EmberJS - Managing Dependencies
- EmberJS - Models
- EmberJS - Components
- EmberJS - Templates
- EmberJS - Router
- EmberJS - Object Model
- Creating and Running Application
- EmberJS - Core Concepts
- EmberJS - Installation
- EmberJS - Overview
- EmberJS - Home
EmberJS Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
EmberJS - Apppcation Concerns
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 | 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 are used to configure an apppcation as it boots. |
3 | Service is an Ember object which can be made available in the different parts of the apppcation. |
4 | It is a region where most of the apppcation s internal code takes place. |