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 #06
Search
Gustavo Leon
February 15, 2013
Programming
0
100
Desarrollo FrontEnd con JavaScript #06
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
240
Manejando Docker containers con Ruby y backticks
hpneo
0
330
CodePicnic: Lecciones aprendidas al crear una startup tecnológica
hpneo
0
440
Universal Web apps con JavaScript
hpneo
0
280
gmaps.js - 4 lecciones open source en 4 pasos
hpneo
0
670
Xamarin
hpneo
1
260
Desarrollo FrontEnd con JavaScript - S06
hpneo
0
99
Desarrollo FrontEnd con JavaScript - S05
hpneo
0
55
Desarrollo FrontEnd con JavaScript - S04
hpneo
0
77
Other Decks in Programming
See All in Programming
AWS CDKにおけるL2 Constructの仕組み / aws-cdk-l2-construct
gotok365
4
520
PHPのバージョンアップ時にも役立ったAST
matsuo_atsushi
0
250
Jasprが凄い話
hyshu
0
210
読まないコードリーディング術
hisaju
1
150
Lambdaの監視、できてますか?Datadogを用いてLambdaを見守ろう
nealle
2
860
やっと腹落ち「スプリント毎に動くモノをリリースする」〜ゼロから始めるメガバンクグループのアジャイル実践〜
sasakendayo
0
260
The Price of Micro Frontends… and Your Alternatives @bastacon 2025 in Frankfurt
manfredsteyer
PRO
0
320
15分で学ぶDuckDBの可愛い使い方 DuckDBの最近の更新
notrogue
3
890
複数のAWSアカウントから横断で 利用する Lambda Authorizer の作り方
tc3jp
0
140
Drawing Heighway’s Dragon- Recursive Function Rewrite- From Imperative Style in Pascal 64 To Functional Style in Scala 3
philipschwarz
PRO
0
190
RecSys2024 参加報告
unonao
1
110
若手バックエンドエンジニアが Elasticsearch を使ってみた話
hott0mott0
1
110
Featured
See All Featured
Rebuilding a faster, lazier Slack
samanthasiow
80
8.9k
Faster Mobile Websites
deanohume
306
31k
Docker and Python
trallard
44
3.3k
Why Our Code Smells
bkeepers
PRO
336
57k
Git: the NoSQL Database
bkeepers
PRO
429
65k
[RailsConf 2023] Rails as a piece of cake
palkan
53
5.3k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
4
400
Designing on Purpose - Digital PM Summit 2013
jponch
117
7.1k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
29
1.1k
GraphQLとの向き合い方2022年版
quramy
44
14k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
129
19k
Bash Introduction
62gerente
611
210k
Transcript
#06 – rest / json / aplicaciones mvc
None
REST • Utiliza recursos cuyos nombres son únicos. • Realiza
operaciones CRUD mediante verbos HTTP.
Create Read Update Delete POST GET PUT DELETE
Create Read Update Delete create_user get_user update_user delete_user
Create Read Update Delete /users /users/1 /users/1 /users/1
JSON • Notación similar a objetos planos de JavaScript. •
Ideal para aplicaciones web frente al uso de XML.
None
Controller View Model