我已將$ location服務注入到控制器。但$ location服務沒有在方法內部定義。請幫忙。
app.controller('MainCtrl',['$scope','$location','$mdDialog','MainViewService','$http',
function($scope, $location,$mdDialog,MainViewService,$http) {
$scope.pushView = function(){
//$location.path
//$locaiton undefined <-- Problem
};
}]);
我高度懷疑這個代碼是問題所在。你確定你的代碼沒有錯字嗎? –