AngularJS ui-router第二个孩子的抽象状态

时间:2015-04-27 07:41:10

标签: angularjs angular-ui-router state abstract

我有一个问题是加载第二个孩子的状态。网址已更改,但网页未加载。

    .state('app', {
        abstract: true,
        template: '<ui-view/>',
        controller: 'myControl',
        data: {
            requireLogin: true
        }
    })
    .state('app.CarsList', {
        params: { id: ':id' },
        url: '/Companies/:name',
        templateUrl: 'CarsList.html',
    })

    .state('app.CarsList.CarInfo', {// second child
        url: '/Info',
        templateUrl: "CarInfo.html"
    })

1 个答案:

答案 0 :(得分:1)

在CarsList.html中应该有一个ui-view,子状态会将他们的模板加载到父母的ui-view中。

检查Documentation