SlideShare a Scribd company logo
1 of 59
Download to read offline
เริ่มต้น Angular JS
แบบสบายๆ
โดย ธีรเศรษฐ์ จิรภัทร์ชาญเดช
Technology Coaching
www.nextflow.in.th/angularjs
www.nextflow.in.th/ionic-framework
www.nextflow.in.th/angularjs
“พล”
Teerasej Jiraphatchandej
Technology Coach
Nextflow.in.th
Email: teerasej@nextflow.in.th
facebook.com/nextflow
www.nextflow.in.th
www.nextflow.in.th/angularjs
ทำไมต้อง Angular JS?
www.nextflow.in.th/angularjs
HTML
ข้อมูล
…
Database
Web service
Object
Array
www.nextflow.in.th/angularjs
JQuery
หรือ
Angular JS
www.nextflow.in.th/angularjs
$(selector).method()
<div id=“main”>
<input
class=“b”/>
</div>
www.nextflow.in.th/angularjs
data-object {{data-object}}
www.nextflow.in.th/angularjs
www.nextflow.in.th/angularjs
HTML
Module
Controller
$scope.property
$scope.method()
www.nextflow.in.th/angularjs
www.nextflow.in.th/angularjs
www.nextflow.in.th/ionic-framework
module
www.nextflow.in.th/angularjs
Module
www.nextflow.in.th/ionic-framework
angular.module(“myApp”, [] )
www.nextflow.in.th/ionic-framework
js/app.js
www.nextflow.in.th/angularjs
Module
www.nextflow.in.th/angularjs
www.nextflow.in.th/ionic-framework
directive
www.nextflow.in.th/angularjs
<script
src=“js/app.js”>
HTML
app.js
.module(“myApp”)
<body ng-app=“myApp”>
www.nextflow.in.th/angularjs
<body ng-app=“myApp”>
myApp = angular.module(“myApp”, [] );
www.nextflow.in.th/ionic-framework
myApp =
angular.module(“myApp”, [] )
www.nextflow.in.th/ionic-framework
Controller
www.nextflow.in.th/ionic-framework
.controller(“…”,
[‘$scope’, function($scope){
// magic!
} ] );
www.nextflow.in.th/angularjs
.controller($scope) {
$scope.name = “Pon”
}
www.nextflow.in.th/ionic-framework
$scope
www.nextflow.in.th/angularjs
.controller( function(){
$scope.property = [];
}]);
www.nextflow.in.th/ionic-framework
Expression
www.nextflow.in.th/angularjs
Controller
“MyCtrl”
HTML
<… ng-controller=“MyCtrl”>
My name is {{ username }}
www.nextflow.in.th/angularjs
<h1> Hello, {{ username }}</h1>
.controller( function(){
$scope.username = “Pon”;
}]);
www.nextflow.in.th/ionic-framework
directive
www.nextflow.in.th/ionic-framework
ng-click
www.nextflow.in.th/angularjs
<button ng-click=“doSomething(param)”>…</button>
.controller( function(){
$scope.doSomething = function(param){
};
}]);
www.nextflow.in.th/angularjs
<button ng-click=“sayHi()”>
HTML
Controller
$scope.sayHi()
www.nextflow.in.th/angularjs
Workshop
C1: Vat 7 Controller
www.nextflow.in.th/ionic-framework
ng-repeat
www.nextflow.in.th/ionic-framework
$scope.list = [
1,2,3
];
www.nextflow.in.th/angularjs
<ul ng-repeat=“item in list”>
<li>{{item}}</li>
</ul>
HTML
Controller
$scope.list
www.nextflow.in.th/ionic-framework
$scope.list = [
{ id: 1, ch: ‘a’},
{ id: 2, ch: ‘b’},
{ id: 3, ch: ‘c’},
];
www.nextflow.in.th/angularjs
<ul ng-repeat=“item in list”>
<li>{{item.name}}</li>
</ul>
HTML
Controller
$scope.list
www.nextflow.in.th/ionic-framework
Challenge:
www.nextflow.in.th/ionic-framework
filter
www.nextflow.in.th/ionic-framework
ng-view
+ ngRoute
www.nextflow.in.th/angularjs
index.html Controller
www.nextflow.in.th/angularjs
Routeng-view
www.nextflow.in.th/angularjs
HTML
(/)
HomeController
HTML
(/profile)
ProfileController
Route
www.nextflow.in.th/ionic-framework
$routeParams
www.nextflow.in.th/angularjs
HTML
(/profile/:id)
ProfileController
$routeParams.id
Route
href=“#/profile/29
www.nextflow.in.th/ionic-framework
Factory
www.nextflow.in.th/angularjs
แชร์ข้อมูลระหว่าง Controller
HTML
Controller Data, Web Service
Controller
Controller
Data, Web Service
Data, Web Service
www.nextflow.in.th/angularjs
แชร์ข้อมูลระหว่าง Controller
HTML
Controller
FactoryController
Controller
www.nextflow.in.th/angularjs
.factory( ‘Name’ , [ ‘’ , function() {
}]);
www.nextflow.in.th/angularjs
.factory( function() {
return {
method1 : function() {
}
}
}]);
www.nextflow.in.th/angularjs
.factory( ‘UserService’ … );
.controller( … [ ‘UserService’ ,
function( UserService ) {
}]);
www.nextflow.in.th/ionic-framework
Web Service
www.nextflow.in.th/ionic-framework
$http.post
$http.get
www.nextflow.in.th/ionic-framework
$http.get(‘url’)
.then(
function(resp){ … },
function(error){ … }
)
www.nextflow.in.th/ionic-framework
$http.post(‘url’, {} )
.then(
function(resp){ … },
function(error){ … }
)
ขอบคุณครับ
โดย ธีรเศรษฐ์ จิรภัทร์ชาญเดช
Technology Coaching
www.nextflow.in.th/angularjs
www.nextflow.in.th/ionic-framework
www.nextflow.in.th/angularjs
“พล”
Teerasej Jiraphatchandej
Technology Coach
Nextflow.in.th
Email: teerasej@nextflow.in.th
facebook.com/nextflow
www.nextflow.in.th

More Related Content

More from Teerasej Jiraphatchandej

.NET Bangkok Meetup #42 - Extract information from your document with Azure F...
.NET Bangkok Meetup #42 - Extract information from your document with Azure F....NET Bangkok Meetup #42 - Extract information from your document with Azure F...
.NET Bangkok Meetup #42 - Extract information from your document with Azure F...Teerasej Jiraphatchandej
 
.NET Conference 2020 - Introduction to Azure Form Recognizer
.NET Conference 2020 - Introduction to Azure Form Recognizer.NET Conference 2020 - Introduction to Azure Form Recognizer
.NET Conference 2020 - Introduction to Azure Form RecognizerTeerasej Jiraphatchandej
 
What da Frontend? - How to start learning Front-end technology without pain.
What da Frontend? - How to start learning Front-end technology without pain.What da Frontend? - How to start learning Front-end technology without pain.
What da Frontend? - How to start learning Front-end technology without pain.Teerasej Jiraphatchandej
 
สร้าง Facebook Fan Page อย่างไร ให้ยั่งยืน [บรรยายในงาน LINE Creator Meeting 3]
สร้าง Facebook Fan Page อย่างไร ให้ยั่งยืน [บรรยายในงาน LINE Creator Meeting 3]สร้าง Facebook Fan Page อย่างไร ให้ยั่งยืน [บรรยายในงาน LINE Creator Meeting 3]
สร้าง Facebook Fan Page อย่างไร ให้ยั่งยืน [บรรยายในงาน LINE Creator Meeting 3]Teerasej Jiraphatchandej
 
Current state of Adobe PhoneGap & Cordova (yes, iOS 8 too)
Current state of Adobe PhoneGap & Cordova (yes, iOS 8 too)Current state of Adobe PhoneGap & Cordova (yes, iOS 8 too)
Current state of Adobe PhoneGap & Cordova (yes, iOS 8 too)Teerasej Jiraphatchandej
 
PhoneGap/Cordova: Push notification on Android
PhoneGap/Cordova: Push notification on AndroidPhoneGap/Cordova: Push notification on Android
PhoneGap/Cordova: Push notification on AndroidTeerasej Jiraphatchandej
 
Responsive Image: ปัญหา แนวคิด และวิธีใช้งานในปัจจุบัน (กันยา 2014)
Responsive Image: ปัญหา แนวคิด และวิธีใช้งานในปัจจุบัน (กันยา 2014)Responsive Image: ปัญหา แนวคิด และวิธีใช้งานในปัจจุบัน (กันยา 2014)
Responsive Image: ปัญหา แนวคิด และวิธีใช้งานในปัจจุบัน (กันยา 2014)Teerasej Jiraphatchandej
 
เร่ิมต้นสร้าง Facebook page สำหรับ line creator
เร่ิมต้นสร้าง Facebook page สำหรับ line creatorเร่ิมต้นสร้าง Facebook page สำหรับ line creator
เร่ิมต้นสร้าง Facebook page สำหรับ line creatorTeerasej Jiraphatchandej
 
เริ่มต้นสร้างแอพ Android Wear โดยโค้ชพล
เริ่มต้นสร้างแอพ Android Wear โดยโค้ชพลเริ่มต้นสร้างแอพ Android Wear โดยโค้ชพล
เริ่มต้นสร้างแอพ Android Wear โดยโค้ชพลTeerasej Jiraphatchandej
 
LINE Creator Meeting Thailand #1: เริ่มต้นเรียนรู้การสร้าง LINE Sticker
LINE Creator Meeting Thailand #1: เริ่มต้นเรียนรู้การสร้าง LINE StickerLINE Creator Meeting Thailand #1: เริ่มต้นเรียนรู้การสร้าง LINE Sticker
LINE Creator Meeting Thailand #1: เริ่มต้นเรียนรู้การสร้าง LINE StickerTeerasej Jiraphatchandej
 
เริ่มต้นกับ Google Analytic และวิธีตีความหมายข้อมูลที่ถูกต้อง
เริ่มต้นกับ Google Analytic และวิธีตีความหมายข้อมูลที่ถูกต้องเริ่มต้นกับ Google Analytic และวิธีตีความหมายข้อมูลที่ถูกต้อง
เริ่มต้นกับ Google Analytic และวิธีตีความหมายข้อมูลที่ถูกต้องTeerasej Jiraphatchandej
 
Getting Started Adobe Edge Code CC & Brackets
Getting Started Adobe Edge Code CC & BracketsGetting Started Adobe Edge Code CC & Brackets
Getting Started Adobe Edge Code CC & BracketsTeerasej Jiraphatchandej
 
Adobe Muse คืออะไร? รู้จักกับ Adobe Muse CC แบบ Web Designer และ Web Developer
Adobe Muse คืออะไร? รู้จักกับ Adobe Muse CC แบบ Web Designer และ Web DeveloperAdobe Muse คืออะไร? รู้จักกับ Adobe Muse CC แบบ Web Designer และ Web Developer
Adobe Muse คืออะไร? รู้จักกับ Adobe Muse CC แบบ Web Designer และ Web DeveloperTeerasej Jiraphatchandej
 

More from Teerasej Jiraphatchandej (20)

.NET Bangkok Meetup #42 - Extract information from your document with Azure F...
.NET Bangkok Meetup #42 - Extract information from your document with Azure F....NET Bangkok Meetup #42 - Extract information from your document with Azure F...
.NET Bangkok Meetup #42 - Extract information from your document with Azure F...
 
.NET Conference 2020 - Introduction to Azure Form Recognizer
.NET Conference 2020 - Introduction to Azure Form Recognizer.NET Conference 2020 - Introduction to Azure Form Recognizer
.NET Conference 2020 - Introduction to Azure Form Recognizer
 
Introduction to Webometrics
Introduction to WebometricsIntroduction to Webometrics
Introduction to Webometrics
 
OK Flutter, Welcome to All platform era
OK Flutter, Welcome to All platform eraOK Flutter, Welcome to All platform era
OK Flutter, Welcome to All platform era
 
What da Frontend? - How to start learning Front-end technology without pain.
What da Frontend? - How to start learning Front-end technology without pain.What da Frontend? - How to start learning Front-end technology without pain.
What da Frontend? - How to start learning Front-end technology without pain.
 
React native - What, Why, How?
React native - What, Why, How?React native - What, Why, How?
React native - What, Why, How?
 
สร้าง Facebook Fan Page อย่างไร ให้ยั่งยืน [บรรยายในงาน LINE Creator Meeting 3]
สร้าง Facebook Fan Page อย่างไร ให้ยั่งยืน [บรรยายในงาน LINE Creator Meeting 3]สร้าง Facebook Fan Page อย่างไร ให้ยั่งยืน [บรรยายในงาน LINE Creator Meeting 3]
สร้าง Facebook Fan Page อย่างไร ให้ยั่งยืน [บรรยายในงาน LINE Creator Meeting 3]
 
Ionic framework for web developer
Ionic framework for web developerIonic framework for web developer
Ionic framework for web developer
 
Current state of Adobe PhoneGap & Cordova (yes, iOS 8 too)
Current state of Adobe PhoneGap & Cordova (yes, iOS 8 too)Current state of Adobe PhoneGap & Cordova (yes, iOS 8 too)
Current state of Adobe PhoneGap & Cordova (yes, iOS 8 too)
 
PhoneGap/Cordova: Push notification on Android
PhoneGap/Cordova: Push notification on AndroidPhoneGap/Cordova: Push notification on Android
PhoneGap/Cordova: Push notification on Android
 
Responsive Image: ปัญหา แนวคิด และวิธีใช้งานในปัจจุบัน (กันยา 2014)
Responsive Image: ปัญหา แนวคิด และวิธีใช้งานในปัจจุบัน (กันยา 2014)Responsive Image: ปัญหา แนวคิด และวิธีใช้งานในปัจจุบัน (กันยา 2014)
Responsive Image: ปัญหา แนวคิด และวิธีใช้งานในปัจจุบัน (กันยา 2014)
 
เร่ิมต้นสร้าง Facebook page สำหรับ line creator
เร่ิมต้นสร้าง Facebook page สำหรับ line creatorเร่ิมต้นสร้าง Facebook page สำหรับ line creator
เร่ิมต้นสร้าง Facebook page สำหรับ line creator
 
เริ่มต้นสร้างแอพ Android Wear โดยโค้ชพล
เริ่มต้นสร้างแอพ Android Wear โดยโค้ชพลเริ่มต้นสร้างแอพ Android Wear โดยโค้ชพล
เริ่มต้นสร้างแอพ Android Wear โดยโค้ชพล
 
LINE Creator Meeting Thailand #1: เริ่มต้นเรียนรู้การสร้าง LINE Sticker
LINE Creator Meeting Thailand #1: เริ่มต้นเรียนรู้การสร้าง LINE StickerLINE Creator Meeting Thailand #1: เริ่มต้นเรียนรู้การสร้าง LINE Sticker
LINE Creator Meeting Thailand #1: เริ่มต้นเรียนรู้การสร้าง LINE Sticker
 
เริ่มต้นกับ Google Analytic และวิธีตีความหมายข้อมูลที่ถูกต้อง
เริ่มต้นกับ Google Analytic และวิธีตีความหมายข้อมูลที่ถูกต้องเริ่มต้นกับ Google Analytic และวิธีตีความหมายข้อมูลที่ถูกต้อง
เริ่มต้นกับ Google Analytic และวิธีตีความหมายข้อมูลที่ถูกต้อง
 
Getting Started Adobe Edge Code CC & Brackets
Getting Started Adobe Edge Code CC & BracketsGetting Started Adobe Edge Code CC & Brackets
Getting Started Adobe Edge Code CC & Brackets
 
Adobe Muse คืออะไร? รู้จักกับ Adobe Muse CC แบบ Web Designer และ Web Developer
Adobe Muse คืออะไร? รู้จักกับ Adobe Muse CC แบบ Web Designer และ Web DeveloperAdobe Muse คืออะไร? รู้จักกับ Adobe Muse CC แบบ Web Designer และ Web Developer
Adobe Muse คืออะไร? รู้จักกับ Adobe Muse CC แบบ Web Designer และ Web Developer
 
HTML5 and Web Trends in 2013
HTML5 and Web Trends in 2013HTML5 and Web Trends in 2013
HTML5 and Web Trends in 2013
 
Adobe edge animate for flash designer
Adobe edge animate for flash designerAdobe edge animate for flash designer
Adobe edge animate for flash designer
 
Common optimization for Actionscript 3
Common optimization for Actionscript 3Common optimization for Actionscript 3
Common optimization for Actionscript 3
 

Angular JS: First look เริ่มต้น Angular JS กันแบบสบายๆ