현대적인 웹 프로그래밍은 HTML5, CSS3, JavaScript를 비롯한 많은 구성요소를 포함합니다. 이 중 전세계적으로 가장 많은 개발자로부터 주목을 받고 있는 jQuery, Bootstrap, AngularJS 등을 사용한 웹 클라이언트 개발에 대한 내용을 다룹니다.
추가적인 HOL은 아래 경로의 Modern Web Client Dev 파트 동영상 강좌를 참고하시기 바랍니다.
http://www.microsoft.com/ko-kr/events/techdaysminisat2/1st_20141122.aspx
app.config(['$routeProvider', function ($routeProvider) {
$routeProvider.
when('/SpeakerList', {
templateUrl: 'Templates/SpeakerList.html',
controller: 'ListController'
}).
when('/SpeakerDetails/:Id', {
templateUrl: 'Templates/SpeakerDetails.html',
controller: 'DetailsController'
}).
otherwise({
redirectTo: '/SpeakerList'
});
}]);
(function () {
'use strict';
angular
.module('app')
.controller('controller', controller);
controller.$inject = ['$scope'];
function controller($scope) {
$scope.title = 'WebCamps 2015 개발자 컨퍼런스';
activate();
function activate() { }
}
var techdays = angular.module('app');
techdays.controller('ListController', ['$scope', '$http', function ($scope, $http) {
$http.get('/api/Speakers').success(function (data) {
$scope.speakers = data;
});
}]);
techdays.controller('DetailsController', ['$scope', '$http', '$routeParams', function ($scope, $http, $routeParams) {
$http.get('/api/Speakers').success(function (data) {
$scope.speakers = data;
$scope.currentId = $routeParams.Id;
if ($routeParams.Id > 0) {
$scope.prevId = Number($routeParams.Id) - 1;
} else {
$scope.prevId = $scope.speakers.length - 1;
}
if ($routeParams.Id < $scope.speakers.length - 1) {
$scope.nextId = Number($routeParams.Id) + 1;
} else {
$scope.nextId = 0;
}
});
}]);
})();