首 页  -  技术分享  - ui-router传递参数

ui-router传递参数

分享者:     2016-03-24

有时间我们需要把一个页面的参数传到另一个页面,供另一个页面使用。下面讲一下利用路由传参的方法。

例如有两个页面:page1.html和page2.html,点击page1.html跳转到page2.html,并将page1.html的参数传递过去。

(1)在app.js中定义路由信息,并在接收的页面(即page2.html)定义接收参数。

 

.state('page1', { 
 url: '/page1', 
 templateUrl: 'templates/page1.html', 
 controller: 'pageOneCtrl' 
}) 
.state('page2', { 
 url: '/page2',
 templateUrl: 'templates/page2.html',
 controller: 'pageTwoCtrl',
 params:{'ID':{}}
})

 

(2)在page1中定义点击事件。

html中:ng-click=“toPage2(id)”

控制器中:

 

.controller('pageOneCtrl', function ($scope, $state) {
 $scope.toPage2 = function (id) { 
  $state.go('page2', {ID:id}); 
  }; 
});

 

(3)Page2中通过$staeParams获得参数ID。

 

.controller('pageTwoCtrl’, function ($scope, $state, $stateParams) {
   var receivedId = $stateParams.ID;
   console.log(receivedId);
   //打印的结果即为id
});

 

这样就可以成功传递参数了。如果需要传递多个参数,

(1)在app.js中定义路由信息,并在接收的页面(即page2.html)定义接收参数。

 

.state('page1', { 
 url: '/page1', 
 templateUrl: 'templates/page1.html', 
 controller: 'pageOneCtrl' 
}) 
.state('page2', { 
 url: '/page2',
 templateUrl: 'templates/page2.html',
 controller: 'pageTwoCtrl' ,
 params:{args:{}}
})

 

(2)在page1中定义点击事件。

html中:

ng-click=“toPage2(name,number)”

控制器中:

 

.controller('pageOneCtrl', function ($scope, $state) {
 $scope.toPage2 = function (name,number) { 
 $state.go('page2', {
 args:{
  NAME:name,
  NUMBER:number
  }); 
 }; 
});

 

(3)Page2中通过$staeParams获得参数ID。

 

.controller('pageTwoCtrl’, function ($scope, $state, $stateParams) {
   var receivedName = $stateParams.args.NAME;
   var receivedNumber = $stateParams.args.NUMBER;
});