0
Main.js난에
$routeProvider
.when('/home', {
templateUrl: 'home.html',
controller: 'StudentController'
})
.when('/viewStudents', {
templateUrl: 'viewStudents.html',
controller: 'StudentController'
})
.when('/viewTeacher', {
templateUrl: 'viewTeacher.html',
controller: 'StudentController'
})
.otherwise({
redirectTo: '/home'
});
코드를 JS에 의해 트리거 routeChangeStart 이벤트 이벤트 모르거나 클릭 얻을 것이다 어떻게 다른 JS 사용자 방문 index.html을 홈 경로가 JS에서 해고
$rootScope.$on("$routeChangeStart", function(event, next, current){
console.log(event);
//here i want to detect
});
& home.html을 ROUT은 다음 viewStudents.html 호출 버튼이보기
.otherwise({
redirectTo: '/home'
});
첨가 전자 변경하고 viewStudents.html 내가 경로 JS으로 인해 변화 routeChangeStart 기능에서 얻거나
event.type을 확인할 수 있습니다. Idk가 각을 전파한다면. – Lacrioque