我想基于angularui嵌套状态创建多步形式。
我想在嵌套状态下创建一个多步骤表单。
所以我的问题是:是否可以在嵌套状态下创建嵌套状态?
答案 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'
});
});