在angular + firebase Web应用程序中阻止直接URL到视图

时间:2016-12-29 09:39:03

标签: angularjs firebase firebase-authentication

我不是专家,因为几周前我开始在firebase和angularjs工作。我正在使用firebase,nodejs(用于服务器)和angularjs构建基于服务器的Web应用程序,我是我的Web应用程序的登录方案,现在我想在检查用户是否登录后阻止直接URL访问。如果用户尝试通过直接URL访问,我想将其重定向到登录页面。 我尝试使用它,但它似乎不起作用。

firebase.auth().onAuthStateChanged(function(user) {
if (user) {
// User is signed in.
} else {
// No user is signed in.
}
}); 

有些人能为我提供一个阻止使用angularjs和firebase访问URL的工作示例吗? 感谢Advances

0 个答案:

没有答案