要通过身份验证服务获取当前用户,可以按照以下步骤操作:
AuthService
,并在其中实现获取当前用户的方法。import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
@Injectable({
providedIn: 'root'
})
export class AuthService {
private currentUserUrl = 'api/current-user'; // 假设这是获取当前用户的API
constructor(private http: HttpClient) {}
getCurrentUser(): Observable {
return this.http.get(this.currentUserUrl);
}
}
AuthService
来获取当前用户。import { Component, OnInit } from '@angular/core';
import { AuthService } from 'path/to/auth.service';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.component.html',
styleUrls: ['./my-component.component.css']
})
export class MyComponent implements OnInit {
currentUser: any;
constructor(private authService: AuthService) {}
ngOnInit() {
this.getCurrentUser();
}
getCurrentUser() {
this.authService.getCurrentUser().subscribe(
user => {
this.currentUser = user;
},
error => {
console.log('Error occurred while getting current user', error);
}
);
}
}
Welcome, {{ currentUser.name }}
请注意,上述代码示例中的currentUserUrl
是一个假设的API地址,您需要根据实际情况将其替换为您的实际API地址。另外,currentUser
是一个包含当前用户信息的对象,您可能需要根据您的用户数据结构进行相应的修改。