我在angularjs中使用ui-router,我有以下代码:
blog.module.js
中的
$stateProvider
.state('blog', {
url: '/domains/:domain_id/blog',
template: '<ui-view></ui-view>',
title: 'Blog',
})
.state('blog.posts', {
url: '/posts',
template: 'Hello world',
title: 'Posts',
});
和modules.module.js
$stateProvider
.state('modules', {
url: '/domains/:domain_id/modules',
templateUrl: '/assets/templates/modules/index.tpl.html',
controller: 'ModulesCtrl as index',
title: 'Módulos',
});
所有路线的:domain_id
都会在我的应用中引用相同的内容。但是,如果可能的话,我需要/想要使:domain_id
在所有状态更改中保持不变,而不需要在我使用的每个ui-sref
上传递它。
我不知道怎么做,有人都知道吗?
非常感谢您的关注
答案 0 :(得分:1)
我猜你需要在改变状态时设置状态参数。因为stateParams在状态范围内。当状态改变时,定义了新状态的范围。 $state.go('blog.posts',{'domain_id':$stateParams.domain_id});