Submit Search
Angular js warsztaty stopień 1
0 likes
1,615 views
Marcin Wosinek
1 of 38
Download now
Downloaded 10 times
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
More Related Content
PDF
Angular js warsztaty stopień 2
Marcin Wosinek
PPTX
AngularJS Warsaw #4 - Dariusz Kalbarczyk "Controller as"
Dariusz Kalbarczyk
PDF
Automation in angular js
Marcin Wosinek
PPTX
CDBG CN 2016 Conference SlidesFINAL
Kimberly Johnson
DOCX
Caracteristicas del ser vivo
Universidad de Guadalajara
PPTX
AngularJS Beginners Workshop
Sathish VJ
PDF
Automatyzacja w ng świecie - ng-poznań 11 września 2014
Marcin Wosinek
PDF
AngularJs in Las Palmas de GC
Marcin Wosinek
Angular js warsztaty stopień 2
Marcin Wosinek
AngularJS Warsaw #4 - Dariusz Kalbarczyk "Controller as"
Dariusz Kalbarczyk
Automation in angular js
Marcin Wosinek
CDBG CN 2016 Conference SlidesFINAL
Kimberly Johnson
Caracteristicas del ser vivo
Universidad de Guadalajara
AngularJS Beginners Workshop
Sathish VJ
Automatyzacja w ng świecie - ng-poznań 11 września 2014
Marcin Wosinek
AngularJs in Las Palmas de GC
Marcin Wosinek
Featured
(20)
PDF
2024 Trend Updates: What Really Works In SEO & Content Marketing
Search Engine Journal
PDF
Storytelling For The Web: Integrate Storytelling in your Design Process
Chiara Aliotta
PDF
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
OECD Directorate for Financial and Enterprise Affairs
PDF
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
SocialHRCamp
PDF
2024 State of Marketing Report – by Hubspot
Marius Sescu
PDF
Everything You Need To Know About ChatGPT
Expeed Software
PDF
Product Design Trends in 2024 | Teenage Engineerings
Pixeldarts
PDF
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
PDF
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
PDF
Skeleton Culture Code
Skeleton Technologies
PDF
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
PDF
Content Methodology: A Best Practices Report (Webinar)
contently
PPTX
How to Prepare For a Successful Job Search for 2024
Albert Qian
PDF
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
PDF
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
PDF
5 Public speaking tips from TED - Visualized summary
SpeakerHub
PDF
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
PDF
Getting into the tech field. what next
Tessa Mero
PDF
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
PDF
How to have difficult conversations
Rajiv Jayarajah, MAppComm, ACC
2024 Trend Updates: What Really Works In SEO & Content Marketing
Search Engine Journal
Storytelling For The Web: Integrate Storytelling in your Design Process
Chiara Aliotta
Artificial Intelligence, Data and Competition – SCHREPEL – June 2024 OECD dis...
OECD Directorate for Financial and Enterprise Affairs
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
SocialHRCamp
2024 State of Marketing Report – by Hubspot
Marius Sescu
Everything You Need To Know About ChatGPT
Expeed Software
Product Design Trends in 2024 | Teenage Engineerings
Pixeldarts
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
Skeleton Culture Code
Skeleton Technologies
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
Content Methodology: A Best Practices Report (Webinar)
contently
How to Prepare For a Successful Job Search for 2024
Albert Qian
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
5 Public speaking tips from TED - Visualized summary
SpeakerHub
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
Getting into the tech field. what next
Tessa Mero
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
How to have difficult conversations
Rajiv Jayarajah, MAppComm, ACC
Ad
Angular js warsztaty stopień 1
1.
AngularJs Warsztaty - stopień
1
2.
AngularJs "Hello world" ●
git checkout slide-1
3.
ng-include ● git checkout
slide-2
4.
Kontroler
5.
$scope
6.
ng-controller ● git checkout
slide-3 ● podpięcie kontrolera do częsci widoku ● $scope działa tylko wewnątrz tagu na którym jest kontroler
7.
Zadanie 1 ● git
checkout todo-1 ● dodanie kontrolera zawierajacego menu ● dodanie i wyświetlenie menu w index.html
8.
Rozwiązanie 1 ● git
add . ● git commit -m '(commit message)' ● git checkout done-1
9.
$routeProvider ● git checkout
slide-4
10.
ng-repeat <ul> <li ng-repeat="project in
projects"> <a href=""></a>: </li> </ul>
11.
Zadanie 2 ● git
checkout todo-2 ● zbudować menu zawierające linki do wszystkich ścieżek var object = {}; var array = []; var arrayOfObjects = [ { lorem: 1, ipsum: 2 },{ test: 4 } ]
12.
Rozwiązanie 2 ● git
add . ● git commit -m '(commit message)' ● git checkout done-2
13.
Zadanie 3 ● git
checkout todo-3 ● zbudować własną podstronę, z wyświetlaniem listy danych podanych w kontrolerze
14.
Rozwiązanie 3 ● git
add . ● git commit -m '(commit message)' ● git checkout done-3
15.
OrderBy ● git checkout
slide-5 <ul> <li ng-repeat="product in products | orderBy:'price'"> </ul>
16.
Zadanie 4 ● git
checkout todo-4 ● wymień hardkodowany parametr na pochodzący ze zmiennej ustawianej w formularzu
17.
Rozwiązanie 4 ● git
add . ● git commit -m '(commit message)' ● git checkout done-4
18.
filter ● git checkout
slide-6 ● składnia filter: {experesion} <tr ng-repeat="person in list | orderBy:orderKey | filter:'oo'">
19.
filter - argumenty ●
'Lorem ipsum' ● {key: 'value'} ● {$: 'value'}
20.
Zadanie 5 ● git
checkout todo-5 ● zmienić filter na wyszukiwarkę z 3 polami: szukanie po firstName, lastName lub wszędzie
21.
Rozwiązanie 5 ● git
add . ● git commit -m '(commit message)' ● git checkout done-5
22.
Funkcje w modelu <p>{{displayValueReturnedByFunction()}}</p> <input
ng-change="fireFunctionWhenChangeHappen()">
23.
Validowanie formularza ● git
checkout slide-8
24.
Zadanie 6 ● git
checkout todo-6 ● newPerson form ● ng-click ○ nazwaListy.push(nowyElement) ○ podstawić {}
25.
Rozwiązanie 6 ● git
add . ● git commit -m '(commit message)' ● git checkout done-6
26.
Trzymanie danych w
controlerze ● git checkout slide-9 ● #/main
27.
Services ● git checkout
slide-10 ● #/main
28.
Zadanie 7 ● git
checkout todo-7 ● dodanie własnego serwisu, People do użytku przez ListCtrl
29.
Rozwiązanie 7 ● git
add . ● git commit -m '(commit message)' ● git checkout done-7
30.
Json - obiekt { "about":
"I'm an object", "structure": { "key": "value" }, "arrays": [ "I", "can", "keep", "them", "too" ] }
31.
Json - tablica [ { "objectId":
1 }, { "objectId": 2 } ]
32.
Rest ● http://example.com/products ● http://example.com/products/1
33.
$resource ● query() ● get() var
userResource = $resource('/user/:userId', {}); userResource.get({userId: 1});
34.
Dane do json ●
git checkout slide-11
35.
Podsumowanie
36.
Materiały ● http://docs.angularjs.org/tutorial/ ● http://egghead.io/
37.
Co dalej? ● webstorage
etc. ● backend ● dev env ● unit tests
38.
Stay tuned ● http://akai.org.pl/ ●
http://poznan.gtug.pl/ ● http://www.meetup.com/Hacking-Poznan/
Download