问题描述
我见过的这个样子,所以请原谅我,如果我从他们忽视了一个重要的细节。
I've seen a few questions like this, so forgive me if I've overlooked a crucial detail from them.
当我打开的http://本地主机:8000 /人物/#/法师/细节/ 3
我重定向到我的',否则'网址: $ urlRouterProvider.otherwise(/用户);
When I load http://localhost:8000/characters/#/mages/detail/3
I get redirected to my 'otherwise' url: $urlRouterProvider.otherwise("/users");
但我的状态提供程序(如果我理解正确)应该加载正确的页面:
But my state provider (if I've understood this correctly) should load the correct page:
$stateProvider
.state('users', {
url: "/users",
templateUrl: DjangoProperties.STATIC_URL + "partials/users.html"
})
.state('users.list', {
url: "/list",
templateUrl: DjangoProperties.STATIC_URL + "partials/users.list.html",
controller: 'UserListCtrl'
})
.state('users.detail', {
url: "/detail/{userID:int}",
templateUrl: DjangoProperties.STATIC_URL + "partials/users.detail.html",
controller: 'UserDetailCtrl'
})
.state('mages', {
url: "/mages",
templateUrl: DjangoProperties.STATIC_URL + "partials/mages.html"
})
.state('mages.list', {
url: "/list",
templateUrl: DjangoProperties.STATIC_URL + "partials/mages.list.html",
controller: 'MageCtrl'
})
.state('mages.detail', {
url: "/detail/{mageID:int}",
views:{
"@mage.detail": {
templateUrl: DjangoProperties.STATIC_URL + "partials/mages.detail.html",
controller: 'MageCtrl',
},
"[email protected]": {
templateUrl: DjangoProperties.STATIC_URL + "common_partials/characteristics.html"
},
"[email protected]": {
templateUrl: DjangoProperties.STATIC_URL + "common_partials/attributes.html"
},
"[email protected]": {
templateUrl: DjangoProperties.STATIC_URL + "common_partials/skills.html"
},
"[email protected]": {
templateUrl: DjangoProperties.STATIC_URL + "partials/spells.html"
},
}
});
}]);
下面是我的 mages.html
:
<h1>Mages</h1>
<hr/>
<a ui-sref="mages.list">Show List</a>
<div ui-view></div>
和我的 mages.detail.html
<h4>{{mage.name}}</h4>
<div ui-view>
<div ui-view="characteristics"></div>
<div ui-view="attributes"></div>
<div ui-view="skills"></div>
<div ui-view="spells"></div>
</div>
这些都不被加载,只是默认列表页面。
None of these are loaded, just the default 'list' page.
我觉得我已经得到了糊涂我的观点的名字,但我想不出做什么来解决这些问题?
I feel I've gotten muddled over my view names, but I can't figure out what to do to fix them?
推荐答案
有的
There is another working plunker
在情况下,我们希望有只有两个级别
In case we want to have only two levels
- 法师
- mages.list
- mages.deatil
我们必须调整状态DEF是这样的:
We have to adjust the state def like this:
.state('mages', {
url: "/mages",
templateUrl: DjangoProperties.STATIC_URL + "partials/mages.html"
})
.state('mages.list', {
url: "/list",
templateUrl: DjangoProperties.STATIC_URL + "partials/mages.list.html",
controller: 'MageCtrl'
})
.state('mages.detail', {
url: "/detail/{mageID:int}",
views:{
"": {
templateUrl: DjangoProperties.STATIC_URL + "partials/mages.detail.html",
controller: 'MageCtrl',
},
"[email protected]" : {
templateUrl: "tpl.html",
},
"[email protected]": {
//templateUrl: DjangoProperties.STATIC_URL + "common_partials/characteristics.html"
template: "common_partials/characteristics.html",
},
"[email protected]": {
//templateUrl: DjangoProperties.STATIC_URL + "common_partials/attributes.html"
template: "common_partials/attributes.html"
},
"[email protected]": {
//templateUrl: DjangoProperties.STATIC_URL + "common_partials/skills.html"
template: "common_partials/skills.html"
},
"[email protected]": {
//templateUrl: DjangoProperties.STATIC_URL + "partials/spells.html"
template: "partials/spells.html"
},
}
});
而现在mages.list.html会是这样(儿童细节没有地方)
And the mages.list.html will be now like this (no place for child detail)
<h3>The mages list</h3>
<h4>{{mage.name}}</h4>
<li><a href="#/mages/detail/1">mages/detail/1</a>
<li><a href="#/mages/detail/2">mages/detail/2</a>
<li><a href="#/mages/detail/3">mages/detail/3</a>
<li><a href="#/mages/detail/4">mages/detail/4</a>
而mages.detail.html西港岛线是:
And the mages.detail.html wil be:
<div >
<a ui-sref="mages.list">back to list</a>
<div ui-view="state"></div>
<div ui-view="characteristics"></div>
<div ui-view="attributes"></div>
<div ui-view="skills"></div>
<div ui-view="spells"></div>
</div>
检查
这篇关于有了我的孩子模板不加载多个视图,在角UI时URL变化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!