Angular UI Router: Different states with same URL?(Angular UI路由器:具有相同URL的不同状态?)
问题描述
我的应用的登陆页面有两种状态:home-public
、home-logged-in
.现在我想在同一个 URL 上显示两种状态,但让控制器和模板依赖于用户会话(用户是否登录?).
The landing page of my app has two states: home-public
, home-logged-in
. Now I want to show both states on the same URL, but let the controller and template depend on the user session (is the user logged in or not?).
有没有办法做到这一点?
Is there a way to achieve this?
推荐答案
你可以有一个基本状态来控制要加载的状态,你可以简单地让声明该基本状态的子状态没有 url:
You could have a base state that controls which state to load, and you could simply have the child stated of that base state not have urls:
.state('home', {
url: "/home",
templateUrl: "....",
controller: function($scope,$state,authSvc) {
if(authSvc.userIsLoggedIn()){
$state.go('home.loggedin')
}else{
$state.go('home.public')
}
}
})
.state('home.public', {
url: "",
templateUrl: "....",
controller: function($scope) {
...........
}
})
.state('home.loggedin', {
url: "",
templateUrl: "....",
controller: function($scope) {
...........
}
})
现在在你的基本状态(home
)的控制器中,你可以检查用户是否登录,并使用 $state.go()
加载适当的状态.
Now in the controller of your base state (home
) you can check if the user is logged in or not, and use $state.go()
to load an appropriate state.
编辑
正如所承诺的,一个有效的小程序.
这篇关于Angular UI路由器:具有相同URL的不同状态?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Angular UI路由器:具有相同URL的不同状态?
基础教程推荐
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01