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
Desarrollo FrontEnd con JavaScript #05
Search
Gustavo Leon
February 15, 2013
0
50
Desarrollo FrontEnd con JavaScript #05
Gustavo Leon
February 15, 2013
Tweet
Share
More Decks by Gustavo Leon
See All by Gustavo Leon
Usando Preact - Una alternativa ligera a React
hpneo
0
210
Manejando Docker containers con Ruby y backticks
hpneo
0
300
CodePicnic: Lecciones aprendidas al crear una startup tecnológica
hpneo
0
420
Universal Web apps con JavaScript
hpneo
0
260
gmaps.js - 4 lecciones open source en 4 pasos
hpneo
0
650
Xamarin
hpneo
1
250
Desarrollo FrontEnd con JavaScript - S06
hpneo
0
95
Desarrollo FrontEnd con JavaScript - S05
hpneo
0
52
Desarrollo FrontEnd con JavaScript - S04
hpneo
0
75
Featured
See All Featured
Git: the NoSQL Database
bkeepers
PRO
427
64k
Imperfection Machines: The Place of Print at Facebook
scottboms
265
13k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
159
15k
Fontdeck: Realign not Redesign
paulrobertlloyd
82
5.2k
VelocityConf: Rendering Performance Case Studies
addyosmani
325
24k
The Invisible Side of Design
smashingmag
298
50k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
250
21k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
6
410
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
1.9k
No one is an island. Learnings from fostering a developers community.
thoeni
19
3k
Being A Developer After 40
akosma
86
590k
Fireside Chat
paigeccino
34
3k
Transcript
#05 – promises / deferred object
None
Promises • Permite asignar varios callbacks a una petición asíncrona
• Separa la petición asíncrona de los callbacks de error y éxito • Encadena peticiones asíncronas
Promises con jQuery
Promises con jQuery
None
Deferred • Sirve para crear funciones asíncronas • Devuelve un
promise. • resolve : dispara los callbacks en done • reject : dispara los callbacks en fail
Deferred Object