将参数从一个控制器传递到另一个页面控制器

时间:2016-03-10 15:19:05

标签: javascript angularjs



.controller('ExplorerCtrl', ["$scope", "appServices","$location", 'appSettings', function ($scope, appServices, $location, appSettings) {
	$scope.changeLocation = function() {
  		$location.path('career'?name={{career.Name}}); 		
 	};
 	$scope.getCareerList = function(){
      appServices.doAPIRequest(appSettings.appAPI.career.overviewList, null, null).then(function(data){
      	$scope.allCareer = data.data.n;
      })
    };




如何将参数从一个控制器传递到另一个页面控制器。我希望在我的下一页API中附加的career.name。

0 个答案:

没有答案