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
Seminario Angular JS
Search
Paradigma
February 08, 2013
Technology
3
210
Seminario Angular JS
Seminario de Angular JS presentado por Luis Calvo en Paradigma Tecnológico
Paradigma
February 08, 2013
Tweet
Share
More Decks by Paradigma
See All by Paradigma
Meetup Madrid Redis Users: Introducción a Redis
paradigma
0
100
Analysis of Websites as Graphs for SEO
paradigma
0
140
Introducción a Django
paradigma
1
420
Introduction to Google Analytics for web developers
paradigma
0
120
Apache Solr
paradigma
0
220
Introducción a Scala
paradigma
0
290
Usando metodologías ágiles en UX
paradigma
0
77
Bitcoin Protocol for Developers
paradigma
4
90
Groovy&Grails: Cambia la forma de desarrollar tus aplicaciones web
paradigma
0
44
Other Decks in Technology
See All in Technology
10XにおけるData Contractの導入について: Data Contract事例共有会
10xinc
6
620
個人でもIAM Identity Centerを使おう!(アクセス管理編)
ryder472
3
200
100 名超が参加した日経グループ横断の競技型 AWS 学習イベント「Nikkei Group AWS GameDay」の紹介/mediajaws202411
nikkei_engineer_recruiting
1
170
Security-JAWS【第35回】勉強会クラウドにおけるマルウェアやコンテンツ改ざんへの対策
4su_para
0
180
20241120_JAWS_東京_ランチタイムLT#17_AWS認定全冠の先へ
tsumita
2
250
複雑なState管理からの脱却
sansantech
PRO
1
140
誰も全体を知らない ~ ロールの垣根を超えて引き上げる開発生産性 / Boosting Development Productivity Across Roles
kakehashi
1
220
リンクアンドモチベーション ソフトウェアエンジニア向け紹介資料 / Introduction to Link and Motivation for Software Engineers
lmi
4
300k
Platform Engineering for Software Developers and Architects
syntasso
1
520
透過型SMTPプロキシによる送信メールの可観測性向上: Update Edition / Improved observability of outgoing emails with transparent smtp proxy: Update edition
linyows
2
210
Evangelismo técnico: ¿qué, cómo y por qué?
trishagee
0
360
社内で最大の技術的負債のリファクタリングに取り組んだお話し
kidooonn
1
550
Featured
See All Featured
Practical Orchestrator
shlominoach
186
10k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
126
18k
Typedesign – Prime Four
hannesfritz
40
2.4k
Testing 201, or: Great Expectations
jmmastey
38
7.1k
A designer walks into a library…
pauljervisheath
203
24k
Rails Girls Zürich Keynote
gr2m
94
13k
Documentation Writing (for coders)
carmenintech
65
4.4k
How STYLIGHT went responsive
nonsquared
95
5.2k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
10
720
Building Your Own Lightsaber
phodgson
103
6.1k
Building Better People: How to give real-time feedback that sticks.
wjessup
364
19k
Making Projects Easy
brettharned
115
5.9k
Transcript
Mejorando el HTML para crear Aplicaciones Web
QUÉ ES ANGULARJS • Framework en Javascript puro • Paradigma
MVC (MVVM) en el lado cliente • Open source • Creado y mantenido por Google
FEATURES • Templates • Inyección de dependencias • Data binding
(bidireccional) • RESTful • Routing
HELLO WORLD! <!doctype html> <html lang="en" ng-app> <head> <meta charset="UTF-8">
<title>Document</title> <script src=“angular.js"></script </head> <body> <h1>Hello World!!</h1> </body> </html>
FUNCIONAMIENTO
UN PASO MÁS <!doctype html> <html lang="en" ng-app> <head> <meta
charset="UTF-8"> <title>Document</title> <script src=“angular.js"></script </head> <body> Hello {{name}}!! <button ng-click=“action()”> <script> function MyCtrl($scope){ $scope.action = function(){ // bla bla bla }; $scope.name = “World!!”; } </script> </body> </html>
$SCOPE
ANGULAR RUNTIME