当我转到标签页时,我无法访问上一页

时间:2016-02-27 05:40:15

标签: ionic-framework

当我从“app.home”转到“app.org.all”时,我是离子的首发。页面中没有后退按钮。

https://plnkr.co/edit/muHqqOLr8G1v1NFW9QL6?p=preview

此路线代码:

.state('app', {
            url: '/app',
            abstract: true,
            templateUrl: 'templates/menu.html',
            controller: 'AppCtrl'

        })

        //Home
        .state('app.home', {
            url: '/home',
            views: {
                'menuContent': {
                    templateUrl: 'templates/home.html',
                    controller: 'HomeCtrl'
                }
            }
        })

 .state('app.org', {
            url: '/org',
            abstract: true,
            views: {
                'menuContent': {
                    templateUrl: 'templates/org/list.html',
                    controller: 'orgCtrl'
                }
            }
        })
        .state('app.org.all', {
            url: '/all',
            views: {
                'profileContent': {
                    templateUrl: 'templates/org/list.all.html',
                    controller: 'org2Ctrl'
                }
            }
        })
当我进入页面时允许支持的

有标签吗?

0 个答案:

没有答案