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
120
0
Share
Desarrollo FrontEnd con JavaScript #06
Gustavo Leon
February 15, 2013
More Decks by Gustavo Leon
See All by Gustavo Leon
Usando Preact - Una alternativa ligera a React
hpneo
0
320
Manejando Docker containers con Ruby y backticks
hpneo
0
390
CodePicnic: Lecciones aprendidas al crear una startup tecnológica
hpneo
0
530
Universal Web apps con JavaScript
hpneo
0
330
gmaps.js - 4 lecciones open source en 4 pasos
hpneo
0
720
Xamarin
hpneo
1
320
Desarrollo FrontEnd con JavaScript - S06
hpneo
0
110
Desarrollo FrontEnd con JavaScript - S05
hpneo
0
69
Desarrollo FrontEnd con JavaScript - S04
hpneo
0
100
Other Decks in Programming
See All in Programming
Xdebug と IDE による デバッグ実行の仕組みを見る / Exploring-How-Debugging-Works-with-Xdebug-and-an-IDE
shin1x1
0
270
OTP を自動で入力する裏技
megabitsenmzq
0
130
RailsのValidatesをSwift Macrosで再現してみた
hokuron
0
140
安いハードウェアでVulkan
fadis
1
850
AIコードレビューの導入・運用と AI駆動開発における「AI4QA」の取り組みについて
hagevvashi
0
580
AI-DLC 入門 〜AIコーディングの本質は「コード」ではなく「構造」〜 / Introduction to AI-DLC: The Essence of AI Coding Is Not “Code” but “Structure”
seike460
PRO
0
130
AWS×クラウドネイティブソフトウェア設計 / AWS x Cloud-Native Software Design
nrslib
16
3.5k
一度始めたらやめられない開発効率向上術 / Findy あなたのdotfilesを教えて!
k0kubun
3
2.6k
今年もTECHSCOREブログを書き続けます!
hiraoku101
0
200
Geminiをパートナーに神社DXシステムを個人開発した話(いなめぐDX 開発振り返り)
fujiba
0
130
Codex CLI でつくる、Issue から merge までの開発フロー
amata1219
0
260
Laravel Nightwatchの裏側 - Laravel公式Observabilityツールを支える設計と実装
avosalmon
1
270
Featured
See All Featured
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
64
54k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Collaborative Software Design: How to facilitate domain modelling decisions
baasie
0
180
SEOcharity - Dark patterns in SEO and UX: How to avoid them and build a more ethical web
sarafernandez
0
160
Digital Projects Gone Horribly Wrong (And the UX Pros Who Still Save the Day) - Dean Schuster
uxyall
0
920
The Pragmatic Product Professional
lauravandoore
37
7.2k
RailsConf 2023
tenderlove
30
1.4k
Sam Torres - BigQuery for SEOs
techseoconnect
PRO
0
230
Agile that works and the tools we love
rasmusluckow
331
21k
Redefining SEO in the New Era of Traffic Generation
szymonslowik
1
260
Self-Hosted WebAssembly Runtime for Runtime-Neutral Checkpoint/Restore in Edge–Cloud Continuum
chikuwait
0
440
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.9k
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