我已向控制器注入了$ location服务。但$ location服务未在方法内定义。请帮忙。
app.controller('MainCtrl',['$scope','$location','$mdDialog','MainViewService','$http',
function($scope, $location,$mdDialog,MainViewService,$http) {
$scope.pushView = function(){
//$location.path
//$locaiton undefined <-- Problem
};
}]);
答案 0 :(得分:1)
你错过了结束括号!
app.controller('MainCtrl',['$scope','$location','$mdDialog','MainViewService','$http',
function($scope, $location,$mdDialog,MainViewService,$http) {
$scope.pushView = function(){
//$location.path
//$locaiton undefined <-- Problem
};
}
] // <-- missing closing bracket
);