0
我們有路線配置
$routeProvider
.when('/Search', { templateUrl: 'Search.html', controller: 'SearchCtrl' })
.when('/Accounts', { templateUrl: 'Accounts.html', controller: 'AccountsCtrl' })
.otherwise({ redirectTo: '/Search' });
在控制器已經BTN點擊它重裝路線
$location.path("/Accounts").search({
AccountOrShortName: i.AccountOrShortName,
});
$route.reload();
AccountsCtrl
是越來越執行兩次。