请帮助我解决离子$ stateParams问题。

这是状态配置

.state('tabs.categories', {
    url: "/categories/:parentID",
    views: {
        'categories-tab': {
            templateUrl: "templates/categories.html",
            controller: 'CategoriesCtrl'
        }
    }
})


控制器:

angular.module('myApp').controller('CategoriesCtrl', ['$scope', '$http', '$stateParams', function($scope, $stateParams, $http){

console.log ($stateParams.parentID);

}]);


并查看(如果需要):

<ion-view view-title="Categories">
<ion-content>

<a class="button button-clear" href="#/tab/categories/2">cat 2</a>
<a class="button button-clear" href="#/tab/categories/3">cat 3</a>

</ion-content>




$ stateParams.parentID在控制器中未定义,无法理解原因。
谢谢你的时间。

最佳答案

您注入的服务顺序正确,请更改此行

angular.module('myApp').controller('CategoriesCtrl',
    ['$scope', '$http', '$stateParams',
    function($scope, $stateParams, $http){


成为

angular.module('myApp').controller('CategoriesCtrl',
    ['$scope', '$http', '$stateParams',
    function($scope, $http, $stateParams){

关于javascript - ionic $ stateParams未定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30710432/

10-16 21:12