- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我迷失在 observables、promises 和 state 的疯狂中。我需要帮助来解决这个问题。
我正在尝试使用 Angularfire2 模块在我的 Angular 2 应用程序中实现注册/登录/注册功能。我从登录功能开始。我得到了基本的工作。我可以登录并重定向到新页面。到目前为止,一切都很好。在我的模板中,我正在检查用户是否登录。麻烦就在这里开始了。我很难检查当前用户是否登录。
Login.components.ts
import { Component, OnInit } from '@angular/core';
import {Validators, FormGroup, FormBuilder } from '@angular/forms';
import { AuthService } from '../auth.service';
import {Router} from '@angular/router';
@Component({
selector: 'app-login',
templateUrl: './login.component.html',
styleUrls: ['./login.component.css']
})
export class LoginComponent implements OnInit {
form: FormGroup;
error = false;
errorMessage = '';
constructor(private fb:FormBuilder, private authService:AuthService, private router:Router) {}
ngOnInit() {
this.form = this.fb.group({
email: ['', Validators.required],
password: ['', Validators.required]
});
}
onLogin() {
this.authService.loginUser(this.form.value.email, this.form.value.password)
.subscribe(
() => this.router.navigate(['/'])
)
}
}
Auth.service.ts
import { Injectable } from '@angular/core';
import { Router } from '@angular/router';
import {FirebaseAuth} from 'angularfire2/index';
import {Observable, Subject} from 'rxjs/Rx';
@Injectable()
export class AuthService {
constructor(private auth: FirebaseAuth, private router:Router) { }
loginUser(email, password):Observable<any> {
return this.fromFirebaseAuthPromise(this.auth.login({email,password}));
}
logout() {
this.auth.logout();
this.router.navigate(['/']);
}
fromFirebaseAuthPromise(promise):Observable<any> {
const subject = new Subject<any>();
promise
.then(res => {
subject.next(res);
subject.complete();
},
err => {
subject.error(err);
subject.complete();
});
return subject.asObservable();
}
isAuthenticated(): Observable<any> {
const state = new Subject<any>();
this.auth.subscribe( (user) => {
if (user) {
var uid = user.uid;
console.log('the user id:' + uid)
state.next(true)
} else {
console.log("no user")
state.next(false)
}
})
return state.asObservable();
}
}
home.component.ts
import { Component, OnInit } from '@angular/core';
import { AuthService } from './auth/auth.service';
import { AuthInfo } from './auth/auth-info';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {
isAuthenticated = false;
constructor(private authService:AuthService) {
this.authService.isAuthenticated().subscribe(
authStatus => this.isAuthenticated = authStatus
);
console.log('isAuthenticated:' + this.isAuthenticated);
}
isAuth() {
return this.isAuthenticated;
}
onLogout() {
this.authService.logout();
}
ngOnInit() {
}
}
home.component.html
<h2>
Please login or register to use the app
</h2>
<a [routerLink]="['/login']" *ngIf="!isAuth()">Login here</a>
<a [routerLink]="['/register']" *ngIf="!isAuth()">Register here</a>
<a *ngIf="isAuth()" (click)="onLogout()" style="cursor: pointer;">Logout</a>
当我在登录时查看我的控制台时,我看到以下结果。
{
the user: id:qqsrQHB0SyeIQTbri6sYEyTTE9r2
isAuthenticated: false
}
所以我想登录一定要成功吧?但是当我检查身份验证是否为真时,似乎失败了。 HomeComponent
中的 *ngIf="!isAuth()"不起作用,只有当我在浏览器中进行硬刷新时才会起作用。
硬刷新后,我仍然在控制台中看到:
{
the user: id:qqsrQHB0SyeIQTbri6sYEyTTE9r2
isAuthenticated: false
}
最佳答案
你的代码太复杂了,你的代码应该是这样的:
授权服务
import { Injectable } from '@angular/core';
import { Router } from '@angular/router';
import { FirebaseAuth } from 'angularfire2/index';
import { Observable } from 'rxjs/Rx';
@Injectable()
export class AuthService {
constructor(private auth: FirebaseAuth, private router:Router) { }
loginUser(email, password) {
return this.auth.login({email,password}) //angularfire returns a promise
}
loginUserObservable(email,password){ //but if still want to use an observable
return Observable.fromPromise(<Promise<any>> this.auth.login({email,password})) // we need to cast the Promise because for some reason Angularfire returns firebase.Promise
}
logout() {
this.auth.logout();
this.router.navigate(['/']);
}
isAuthenticated(): Observable<any> {
return this.auth; //auth is already an observable
}
}
home.component.ts:
import { Component, OnDestroy, OnInit } from '@angular/core';
import { AuthService } from './auth/auth.service';
import { AuthInfo } from './auth/auth-info';
import { Subscription } from 'rxjs/Subscription';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit, OnDestroy {
private sub: Subscription;
constructor(private authService:AuthService) { }
ngOnInit() {
this.sub = this.authService.isAuthenticated().subscribe(authResp =>
console.log('isAuthenticated: ', authResp);
);
}
ngOnDestroy() {
this.sub.unsubscribe();
}
isAuth() {
return this.authService.isAuthenticated();
}
onLogout() {
this.authService.logout();
}
}
home.component.html
<h2>
Please login or register to use the app
</h2>
<a [routerLink]="['/login']" *ngIf="!(isAuth() | async)">Login here</a>
<a [routerLink]="['/register']" *ngIf="!(authService.isAuthenticated() | async)">Register here</a>
<!--you can either use !(isAuth() | async) or !(authService.isAuthenticated() | async) it's up to your religion -->
<a *ngIf="isAuth() | async" (click)="onLogout()" style="cursor: pointer;">Logout</a>
我建议您阅读此 simple guide
关于Angular 2 - Angularfire 2 身份验证状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40263091/
$destroy() 存在于 Angularfire 中的原因是什么? angularfire 的文档说: https://www.firebase.com/docs/web/libraries/an
我收到“错误:permission_denied:客户端无权访问所需数据。”我比较确定我有规则问题。有没有办法跟踪 angularfire 中哪些客户端调用失败?该库中的抽象级别和异步性使得甚至很难找
我看过有关如何检查特定文档是否存在的示例。但是,是否可以在执行如下查询时检查文档是否存在? private albumsCollection: AngularFirestoreCollection;
我正在寻找一种方法来获取子元素的方法,而不是单独加载该元素。 假设我有一个 Post 模型,每个帖子都有评论。这就是我获得帖子模型的方式: var post = $firebase(new Fireb
这是我认为的相关代码: p(ng-repeat="t in todos") input( type="checkbox", ng-model="t.done", ng-clic
好的,我刚开始使用 Firebase。我读过这个:https://www.firebase.com/docs/data-structure.html我读过这个:https://www.firebase
如何更新节点内的单个对象。 { foo: { title: 'hello world', time: '1000' } } 如上所述,我只想更新标题。$firebase(new
我正在使用 AngularFire并在我的 app.module.ts 中启用离线支持的持久性: imports: [ AngularFireModule.initializeApp(envir
我无法增加帖子“点赞”的数量。以下是我现在拥有的: addLike(pid, uid) { const data = { uid: uid, }; this.afs
我正在使用 AngularFire 创建一个新用户。但是,当我注册用户时,我还会询问名字和姓氏,并在注册后添加该信息。 $firebaseSimpleLogin(fbRef).$createUser(
我已经在 DIV 中发布了有关我的背景图像的先例问题。它在当前日期成功运行。但是,当我想使用用户在数据库中输入的时间和模型“starthourid”来调整背景图像时,它不起作用(它显示“夜晚”)!但数
在努力完成Angular tutorials on their website时当我尝试创建一个使用 Firebase 的列表时,我陷入了困境。来存储数据。奇怪的是,Angular 网站上一切正常,但
我正在努力使用 AngularFire 进行用户身份验证和授权。 问题是,一旦授权用户登录并显示来自 Firebase 的数据,如果我注销,则数据仍然会显示。我可以将数据从范围中分离出来(delete
我正在使用 AngularFire 和 Angular 8 来构建一个应用程序,但我有一个愚蠢的问题(我相信它实际上很愚蠢)。 我构建了一个简单的服务来包装 AngularFireAuth : imp
我正在使用 Angularfire 制作网站。我正在尝试将基于 oauth 的登录与 google 集成以进行用户身份验证,但是当我尝试运行 index.html 文件并尝试登录时显示错误 11:59
我想让我的 angularFire 集合在路由加载时解析。像这样的东西: App.config ($routeProvider, angularFireProvider) -> $routePro
我正在尝试获取简单 angularFireCollection 数组的长度,但似乎无法: var stf = new FireBase("http://myfirebase-app.firebasei
我有一个带有用户存储的 FireBase 数据库。我也使用简单的登录电子邮件/密码。在用户存储中,我保存了一些用户的额外信息——例如最后登录日期。这是我的工作流程 - 从注册到登录: 我注册了一个用户
我在 /items 中有 Firebase 条目,其属性为 title 和 points。在输入新项目之前,我试图检查是否存在具有相同 title 的项目。 这是我所拥有的,但它并没有发生: app.
我将数据按以下结构存储在 firebase 中(图 1)。我遵循了结构化数据的指南,并将其保存在一个平面结构中,其中包含事件和用户的键值对,以允许多对多关系引用。我想使用 userid 来查找用户有权
我是一名优秀的程序员,十分优秀!