Explain what is ember-data?

devquora
devquora

Posted On: Feb 22, 2018

 

Ember comes with a data management library called Ember data which deals with application data that defines the structure of the data. We can generate ember-data model using Ember CLI. The main purpose of an ember-data is that it is a library that integrates tightly with ember.js to make it easy to retrieve records from a server, cache them for performance, save updates back to the server and create new records on the client.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Emberjs Interview Questions

    What is Ember.js? Write the steps to create an app in Ember.js?

    Ember.js is an open source technology written in javascript based on a model view pattern and was developed by ember cor..

    Emberjs Interview Questions

    Explain directory structure in Ember.js?

    The new command generates a project structure also called directory structure with the following files and directories:I..

    Emberjs Interview Questions

    What is ember route? How can you generate a route in ember.js?

    An ember route is built with three parts:An entry in the Ember router which maps between our route name and a specific..