UI-Router - 基本网址不匹配

时间:2016-07-04 18:24:39

标签: angular-ui-router

所有州从一个到另一个都很好,但我有一些问题需要刷新它们:

刷新/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}',
})

欢迎任何帮助......

约翰

0 个答案:

没有答案