我有一个问题是加载第二个孩子的状态。网址已更改,但网页未加载。
.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"
})