-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathember-data-landing-page.gjs
57 lines (57 loc) · 1.48 KB
/
ember-data-landing-page.gjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { LinkTo } from "@ember/routing";
<template><article class="chapter">
<h1>
Ember Data API Documentation
</h1>
<p>
Ember Data is a library for robustly managing data in applications built with Ember.js.
</p>
<h2>
Commonly searched-for documentation
</h2>
<ul class="spec-method-list">
<li>
<LinkTo @route="project-version.classes.class" @model="Model">
Model
</LinkTo>
- an object that represents the underlying data that your application presents to the user.
</li>
<li>
<LinkTo @route="project-version.classes.class" @model="Store">
Store
</LinkTo>
- a service that contains all of the data for records loaded from the server.
</li>
<li>
<LinkTo @route="project-version.classes.class" @model="Adapter">
Adapter
</LinkTo>
- determines how data is persisted to a backend data store.
</li>
<li>
<LinkTo @route="project-version.classes.class" @model="Serializer">
Serializer
</LinkTo>
- format the data sent to and received from the backend store.
</li>
</ul>
<h2>
Useful links
</h2>
<ul>
<li>
<h5>
<a href="https://github.com/ember-learn/ember-api-docs">
API Documentation Github Repository
</a>
</h5>
</li>
<li>
<h5>
<a href="https://guides.emberjs.com/release/models/">
Introduction to Ember Data
</a>
</h5>
</li>
</ul>
</article></template>