首先,我将Ionic与Firebase结合使用。因此,我有一个作为应用程序菜单的组件,可以在其中验证用户是否登录并进行必要的重定向,但是我无法获取已登录用户的数据,我尝试了几种表格,但没有得到答复。
这是我的代码,使用户再次登录。我需要做:static String recursiveUpAndDown(int n) {
if (n < 0) return "";
String x = recursiveUpAndDown(n - 1);
System.out.print(n + " ");
return n + " " + x;
}
public static void main(String[] args)
{
System.out.print(recursiveUpAndDown(10));
}
this.currentUser = user;
这是我的 this.auth.authenticated().subscribe(
user => {
if (user) {
if (!this.inRegister()) {
this.currentUser = user;
this.rootPage = HomePage;
}
} else {
this.rootPage = LoginPage;
}
},
() => {
this.rootPage = LoginPage;
}
);
函数:
authenticated()