Projekt01/
`-htdocs/
|-css/
| `-style.css
|-js/
| `-app.js
|-templates/
| |-egy.html
| |-ketto.html
| `-main.html
`--index.html
Az 1.4.8-s angular változatban még
route gyakorlat
Route gyakorlat
Első template oldal
{{msg}}
Második template oldal
{{msg}}
Főoldal
{{msg}}
angular.module("egyApp",['ngRoute'])
.config(function($routeProvider) {
$routeProvider
.when('/egy', {
templateUrl: 'templates/egy.html',
controller: 'egyCtrl'
})
.when('/ketto', {
templateUrl: 'templates/ketto.html',
controller: 'kettoCtrl'
})
.when('/', {
templateUrl: 'templates/main.html',
controller: 'mainCtrl'
})
})
.controller('egyCtrl', function($scope){
$scope.msg = "Működik";
})
.controller('kettoCtrl', function($scope){
$scope.msg = "Ez is működik";
})
.controller('mainCtrl', function($scope){
$scope.msg = "A főoldalon a controll működik";
})
;