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
Uvod u Backbone.js
Search
Zarko Susnjar
October 04, 2012
Programming
2
130
Uvod u Backbone.js
yclabs.wordpress.com, prezentacija održana 04.10.2012. ,
Zarko Susnjar
October 04, 2012
Tweet
Share
More Decks by Zarko Susnjar
See All by Zarko Susnjar
Moderne web i frontend tehnologije 2015
zarkosusnjar
0
180
Other Decks in Programming
See All in Programming
チームのテスト力を総合的に鍛えて品質、スピード、レジリエンスを共立させる/Testing approach that improves quality, speed, and resilience
goyoki
5
1.1k
20250704_教育事業におけるアジャイルなデータ基盤構築
hanon52_
5
1k
MCPを使ってイベントソーシングのAIコーディングを効率化する / Streamlining Event Sourcing AI Coding with MCP
tomohisa
0
170
CDK引数設計道場100本ノック
badmintoncryer
2
450
フロントエンドのパフォーマンスチューニング
koukimiura
5
1.9k
What's new in AppKit on macOS 26
1024jp
0
150
AIエージェントはこう育てる - GitHub Copilot Agentとチームの共進化サイクル
koboriakira
0
720
ペアプロ × 生成AI 現場での実践と課題について / generative-ai-in-pair-programming
codmoninc
2
21k
猫と暮らす Google Nest Cam生活🐈 / WebRTC with Google Nest Cam
yutailang0119
0
170
NPOでのDevinの活用
codeforeveryone
0
890
PicoRuby on Rails
makicamel
2
140
型で語るカタ
irof
0
660
Featured
See All Featured
Thoughts on Productivity
jonyablonski
69
4.7k
Art, The Web, and Tiny UX
lynnandtonic
299
21k
Balancing Empowerment & Direction
lara
1
450
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Done Done
chrislema
184
16k
Typedesign – Prime Four
hannesfritz
42
2.7k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
251
21k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Rebuilding a faster, lazier Slack
samanthasiow
83
9.1k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.9k
Transcript
None
MVC > MVP > MVVM > MV*
None
None
None
None
Backbone.js gives structure to web applications by providing models with
key- value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
None
Problem „Klasičnog nasledjivanja“ u Javascript-u ( new , Object.create() Classical
Inheritance)
None
None
None
None
None
None
None
None
None
None
None
None
// Backbone implementacija klasičnog nasleđivanja // Sve klase podržavaju nasledjivanje
Backbone.Model.extend = Backbone.Collection.extend = Backbone.Router.extend = Backbone.View.extend = extend;
Backbone MV* • • • • •
None
None
None
None
None
Backbone.Model
None
None
None
None
None
None
None
None
Backbone.Collection
None
None
None
None
None
None
Backbone.View
None
None
None
None
None
Client-side Templating
None
None
None