是否可以在嵌套状态下创建嵌套状态?

时间:2015-08-03 14:05:44

标签: angularjs angular-ui-router

我想基于angularui嵌套状态创建多步形式。

我想在嵌套状态下创建一个多步骤表单。

所以我的问题是:是否可以在嵌套状态下创建嵌套状态?

1 个答案:

答案 0 :(得分:1)

是。例如:

.config(function($stateProvider) {
    $stateProvider
        .state('root', {
            templateUrl: 'root.html',
            controller: 'rootCtrl'
        })
        .state('root.nested', {
            templateUrl: 'nest1.html',
            controller: 'nested1Ctrl'
        })
        .state('root.nested.nested', {
            templateUrl: 'nested2.html',
            controller: 'nested2Ctrl'
        });
});