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
120
Analysis of Websites as Graphs for SEO
paradigma
0
150
Introducción a Django
paradigma
1
460
Introduction to Google Analytics for web developers
paradigma
0
130
Apache Solr
paradigma
0
250
Introducción a Scala
paradigma
0
360
Usando metodologías ágiles en UX
paradigma
0
95
Bitcoin Protocol for Developers
paradigma
4
91
Groovy&Grails: Cambia la forma de desarrollar tus aplicaciones web
paradigma
0
56
Other Decks in Technology
See All in Technology
Bill One 開発エンジニア 紹介資料
sansan33
PRO
4
12k
【5分でわかる】セーフィー エンジニア向け会社紹介
safie_recruit
0
24k
AIコードエディタは開発を変えるか?Cursorをチームに導入して1ヶ月経った本音
ota1022
1
630
AIオンボーディングとAIプロセスマイニング
nrryuya
5
1.2k
iOS/Androidで無限循環Carousel表現を考えてみる
fumiyasac0921
0
120
JNation 2025 - Quarkus for Spring Developers
edeandrea
PRO
0
100
ProductZine Day 2025 Assuredのプロダクトディスカバリー
kechol
0
100
Roo Codeにすべてを委ねるためのルール運用
pharma_x_tech
1
130
All About Sansan – for New Global Engineers
sansan33
PRO
1
1.2k
ITエンジニアを取り巻く環境とキャリアパス / A career path for Japanese IT engineers
takatama
3
1.5k
CloudTrailも、GuardDutyも、VPC Flow logsも… ログ多すぎ問題の整理術
nikuyoshi
5
610
テストを実施する前に考えるべきテストの話 / Thinking About Testing Before You Test
nihonbuson
PRO
12
2k
Featured
See All Featured
Product Roadmaps are Hard
iamctodd
PRO
53
11k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.8k
A Tale of Four Properties
chriscoyier
159
23k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
740
4 Signs Your Business is Dying
shpigford
183
22k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
30
2.1k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
45
7.3k
Statistics for Hackers
jakevdp
799
220k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.3k
Docker and Python
trallard
44
3.4k
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