Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Ember.js
Search
xamenrax
April 04, 2013
Programming
2
260
Ember.js
test presentation
xamenrax
April 04, 2013
Tweet
Share
Other Decks in Programming
See All in Programming
ユーザーも開発者も悩ませない TV アプリ開発 ~Compose の内部実装から学ぶフォーカス制御~
taked137
0
190
Ruby Parser progress report 2025
yui_knk
1
460
デザイナーが Androidエンジニアに 挑戦してみた
874wokiite
0
550
GitHubとGitLabとAWS CodePipelineでCI/CDを組み比べてみた
satoshi256kbyte
4
250
概念モデル→論理モデルで気をつけていること
sunnyone
3
300
より安全で効率的な Go コードへ: Protocol Buffers Opaque API の導入
shwatanap
2
750
Laravel Boost 超入門
fire_arlo
3
220
CloudflareのChat Agent Starter Kitで簡単!AIチャットボット構築
syumai
2
510
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
410
Rancher と Terraform
fufuhu
2
550
スケールする組織の実現に向けた インナーソース育成術 - ISGT2025
teamlab
PRO
2
160
旅行プランAIエージェント開発の裏側
ippo012
2
930
Featured
See All Featured
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4k
BBQ
matthewcrist
89
9.8k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
9
810
How STYLIGHT went responsive
nonsquared
100
5.8k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.4k
Mobile First: as difficult as doing things right
swwweet
224
9.9k
Making Projects Easy
brettharned
117
6.4k
GraphQLの誤解/rethinking-graphql
sonatard
72
11k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
358
30k
Optimising Largest Contentful Paint
csswizardry
37
3.4k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3k
Transcript
None
• ◦ ◦ ◦ ◦ • ◦ ◦ ◦ ◦
• • • • •
App.Cat = Ember.Object.extend({ name: 'null', meow: function(thing) { alert(thing); }
}); App.Cat = DS.Model.extend({ name: DS.attr('string'), isSelected: DS.attr('boolean', {defaultValue: false}) }); App.Store = DS.Store.extend({ revision: 12 });
• • • •
App.Router.map(function() { this.resource('cats', function() { this.recourse('cat', { path: ':cat_id' };
}); }); App.CatsRoute = Ember.Route.extend({ model: function() { return App.Cat.find(); } }); App.CatRoute = Ember.Route.extend({ model: function(params) { return App.Cat.find(params.cat_id); } });
С • •
• •
None
•