gpt4 book ai didi

angularjs - Angular 在 ui-router 中通过 templateUrl 传递参数

转载 作者:行者123 更新时间:2023-12-01 13:47:36 25 4
gpt4 key购买 nike

我正在使用 angularsails 构建一个网络应用程序,其中每个用户都有自己的应用程序,因此为了显示他们的公开个人资料,我必须使用不同的模板。我正在使用 ui-router 并且如果我可以将传递给 route url 的 id 传递给 templateUrl 字段我可以轻松解决这个问题,所以是有办法吗??

app.config(function($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise('/');
$stateProvider
.state('profile', {
abstract: true,
url: '',
templateUrl: domain + "/profile/master",
controller: 'profileController'
})
.state('profile.user', {
url: '/user/:id',
templateUrl: domain + '/angular/profile/:id',
controller: 'privateProfileController'
});
});

最佳答案

source link

.state('contacts.detail', {
url: '/{contactId}',
views: {
'menu': {
templateUrl:
function (stateParams){
return '/partials/contacts.detail' + stateParams.contactId + '.html';
}
}
}
})

关于angularjs - Angular 在 ui-router 中通过 templateUrl 传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34722102/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com