-
Notifications
You must be signed in to change notification settings - Fork 0
/
controlador.js
38 lines (33 loc) · 1.24 KB
/
controlador.js
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
var practica = angular.module('practica-ng-view',['ngRoute']);
practica.config(['$routeProvider',
function($routeProvider) {
$routeProvider.
when('/Inicio', {
templateUrl: 'inicio.php',
}).
when('/Blog', {
templateUrl: 'blog.php',
controller: 'Blog'
}).
when('/Descargas', {
templateUrl: 'descargas.php',
}).
when('/Acerca', {
templateUrl: 'blog.php',
controller: 'Acerca'
}).
otherwise({
redirectTo: '/',
templateUrl: 'inicio.php',
//controller: 'miembros'
});
}]);
practica.controller('inicio', function($scope){
$scope.mensaje= "Aqui de se desarrolla todo el contenido de la paguina de Inicio."
});
practica.controller('Blog', function($scope){
$scope.mensaje= "Aqui se encuentra las entradas del blog."
});
practica.controller('Acerca', function($scope){
$scope.mensaje= "Estas en blog.php pero usando controller, puedes carga el Acerca de."
});