How to pass parameter when I redirect the page in angularjs using ui router?
问题 I am trying to pass parameters via the ui-router state.go However, I am not sure how to pass the parameters. Here are my codes app.config(function($stateProvider) { $stateProvider .state('first', { url: '/first', templateUrl: 'first.html' }) .state('second', { url: '/second', templateUrl: 'second.html' }) }) //my first.html app.controller.('firstCtrl' ,["$scope", "$state", function($scope, $state){ $scope.userInput <- come from user $scope.clickThis=function() { $state.go("second", $scope