0
Main.js我將如何得到由JS觸發routeChangeStart事件事件知道或單擊
$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
$rootScope.$on("$routeChangeStart", function(event, next, current){
console.log(event);
//here i want to detect
});
當用戶訪問index.html的回家路線從JS解僱& home.html做爲鑑於
.otherwise({
redirectTo: '/home'
});
添加有按鈕哪個呼叫viewStudents.html然後擊潰Ë將發生變化,viewStudents.html將呈現
我將如何在該路線由於更改爲JS routeChangeStart功能獲得或按用戶
你可以嘗試檢查event.type。 Idk如果角度傳播。 – Lacrioque