0 votes
in JavaScript by

 Explain model with reference to ember.js. Also, tell how it is defined in it.

1 Answer

0 votes
by

Models are objects that represent the underlying data which is presented to the user by your application. Different applications have different objects or models, and it depends completely on what problem they are trying to solve. For example, a photo album is a collection of many photos i.e. group of photos. And, a photo sharing application has a photo model to represent a particular photo. Models are persistent and most of them are loaded from and saved to a server that uses the database to store data. Once the models are loaded from the storage, the components translate the data into the user interface with which the user can interact. Defining model in ember.js: –

Syntax-

ember generate model model_name;

Related questions

0 votes
0 votes
asked Mar 12, 2020 in JavaScript by GeorgeBell
0 votes
asked Mar 12, 2020 in JavaScript by GeorgeBell
...