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
コード書くの好きな人向けAIコーディング活用tips #orestudy
77web
3
300
カクヨムAndroidアプリのリブート
numeroanddev
0
410
事業戦略を理解してソフトウェアを設計する
masuda220
PRO
22
6k
データベースコネクションプール(DBCP)の変遷と理解
fujikawa8
1
250
XSLTで作るBrainfuck処理系
makki_d
0
190
型付きアクターモデルがもたらす分散シミュレーションの未来
piyo7
0
760
Effect の双対、Coeffect
yukikurage
5
1.4k
Cloudflare Realtime と Workers でつくるサーバーレス WebRTC
nekoya3
0
400
Development of an App for Intuitive AI Learning - Blockly Summit 2025
teba_eleven
0
110
Haskell でアルゴリズムを抽象化する / 関数型言語で競技プログラミング
naoya
17
4.3k
関数型まつり2025登壇資料「関数プログラミングと再帰」
taisontsukada
2
800
Enterprise Web App. Development (2): Version Control Tool Training Ver. 5.1
knakagawa
1
110
Featured
See All Featured
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
30
2.1k
Rails Girls Zürich Keynote
gr2m
94
14k
Rebuilding a faster, lazier Slack
samanthasiow
81
9k
Producing Creativity
orderedlist
PRO
346
40k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
252
21k
Practical Orchestrator
shlominoach
188
11k
Git: the NoSQL Database
bkeepers
PRO
430
65k
Embracing the Ebb and Flow
colly
86
4.7k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Automating Front-end Workflow
addyosmani
1370
200k
Java REST API Framework Comparison - PWX 2021
mraible
31
8.6k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.5k
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
•