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
JSON
Search
Fernando Perales
September 27, 2012
Programming
1
250
JSON
Introducción a JSON
Fernando Perales
September 27, 2012
Tweet
Share
More Decks by Fernando Perales
See All by Fernando Perales
Anonimización de bases de datos con PostgreSQL - nerdearla
ferperales
0
49
Let's give REST a rest: exploring the state of gRPC in Ruby
ferperales
0
130
Guía Práctica para Convertirse en Contribuidor de Open Source en 10 Años (o más)
ferperales
0
60
¿Es convertirte en manager tan malo como todo mundo dice?
ferperales
0
61
Guía práctica para convertirse en contribuidor de open source en 10 años o más
ferperales
0
47
Anonimización de bases de datos con PostgreSQL
ferperales
0
58
Guía Práctica para Convertirse en Contribuidor de Open Source en 10 Años (o más)
ferperales
0
58
Guía práctica para convertirse en Senior Engineer en 10 años
ferperales
0
130
Consultoría y Open Source: buscando el balance entre beneficio y la diversión
ferperales
0
71
Other Decks in Programming
See All in Programming
Java on Azure で LangGraph!
kohei3110
0
170
Result型で“失敗”を型にするPHPコードの書き方
kajitack
4
380
第9回 情シス転職ミートアップ 株式会社IVRy(アイブリー)の紹介
ivry_presentationmaterials
1
240
童醫院敏捷轉型的實踐經驗
cclai999
0
190
技術同人誌をMCP Serverにしてみた
74th
1
360
『自分のデータだけ見せたい!』を叶える──Laravel × Casbin で複雑権限をスッキリ解きほぐす 25 分
akitotsukahara
1
550
ruby.wasmで多人数リアルタイム通信ゲームを作ろう
lnit
2
270
Composerが「依存解決」のためにどんな工夫をしているか #phpcon
o0h
PRO
1
230
Cline指示通りに動かない? AI小説エージェントで学ぶ指示書の書き方と自動アップデートの仕組み
kamomeashizawa
1
580
Team operations that are not burdened by SRE
kazatohiei
1
210
ニーリーにおけるプロダクトエンジニア
nealle
0
490
PHP 8.4の新機能「プロパティフック」から学ぶオブジェクト指向設計とリスコフの置換原則
kentaroutakeda
2
540
Featured
See All Featured
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.5k
Raft: Consensus for Rubyists
vanstee
140
7k
Gamification - CAS2011
davidbonilla
81
5.3k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.8k
Building a Modern Day E-commerce SEO Strategy
aleyda
42
7.3k
YesSQL, Process and Tooling at Scale
rocio
173
14k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.8k
A Modern Web Designer's Workflow
chriscoyier
694
190k
Embracing the Ebb and Flow
colly
86
4.7k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.4k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
Transcript
JSON
¿Qué es JSON? JavaScript Object Notation es un formato ligero
de intercambio de datos basado en una de las mejores partes de Javascript: Notación literal de objetos
Douglas Crockford El formato JSON fue popularizado por el gurú
de Javascript Douglas Crockford también creador de heramientas como JSLint y JSMin
Douglas Crockford Además de ser senior Javascript architect en Paypal
y autor del libro Javascript: the good parts
¿En qué consiste? Es un arreglo de pares ordenados de
tipo clave – valor que puede tomar los 6 tipos de valores de JS y el valor especial null {“clave” : valor}
{ "first": "Jerome", "middle": "Lester", "last": "Howard", "nick-name": "Curly", "born":
1903, "died": 1952, "quote": "nyuk-nyuk-nyuk!" }
Tambien es posible crear un array de Objetos JSON usando
la notación de la parte superior [ {“clave” : valor}, {“otraClave”:otroValor} ]
[ {"first": "Jerome", "middle": "Lester", "last": "Howard", "nick-name": "Curly",}, {"first":
"Harry", "middle": "Moses", "last": "Howard", "nick-name": "Moe"}, {"first": "Louis","last": "Feinberg", "nick-name": "Larry",} ]
Uso de JSON: API El formato ligero de JSON propicia
el intercambio de información y es una buena opción para la implementación de APIs o interfaces para comunicación entre aplicaciones
¿Dudas, preguntas o comentarios?
¡Gracias!