所有州从一个到另一个都很好,但我有一些问题需要刷新它们:
刷新/products/verandas
会导致/warranty/verandas
刷新/products/pergolas
会导致/warranty/pergolas-inside
.state('app', { // LEVEL 0
abstract: true,
url: ''
})
.state('app.posts', { // LEVEL 1 -> this parent is defined
url: '/products', // but not prioritized on refresh
})
.state('app.posts.type', { // LEVEL 2
url: '/{type}',
})
.state('app.page', { // LEVEL 1
url: '/{level1}',
abstract: true
})
.state('app.page.child', { // LEVEL 2
url: '/{level2}',
})
欢迎任何帮助......
约翰