我试图将登录用户的详细信息提供给我的应用程序。我有以下代码在Angular 5中工作,但在Angular 6中没有工作,因为rxjs 6中缺少.share()函数
我需要.share()函数吗?关于rxjs 6的更改,我的代码看起来没问题吗?
export class UserService {
readonly baseUrl = `${environment.apiUrl}/auth`;
private loggedIn = false;
private currentUserSubject = new BehaviorSubject<LoggedInUser>({} as LoggedInUser);
currentUser = this.currentUserSubject.asObservable().share();
constructor(private http: HttpClient) { }
login(userLogin: UserLogin) {
return this.http.post<any>(this.baseUrl + '/login', { username: userLogin.email, password: userLogin.password })
.subscribe(result => {
localStorage.setItem('auth_token', result.auth_token);
this.setCurrentUser();
return true;
});
}
setCurrentUser(): void {
if (localStorage.getItem("auth_token")) {
let jwtData = localStorage.getItem("auth_token").split('.')[1]
let decodedJwtJsonData = window.atob(jwtData)
let decodedJwtData = JSON.parse(decodedJwtJsonData)
this.currentUserSubject.next(
{
firstName: decodedJwtData.given_name,
id: decodedJwtData.id,
}
);
}
}
getCurrentUser(): LoggedInUser {
if (this.currentUserSubject.value.id) {
return this.currentUserSubject.value;
}
}
ngOnDestroy() {
this.currentUserSubject.unsubscribe();
}
isLoggedIn() {
this.setCurrentUser();
if (this.currentUserSubject.value.id) {
return true;
}
return false;
}
}
答案 0 :(得分:5)
RxJS v5.5.2+
已移至Pipeable
运营商,以改善树木震动并更轻松地创建自定义运算符。
现在operators
需要使用pipe
方法合并 Refer This
新导入
import { share} from 'rxjs/operators';
修改后的代码
currentUser = this.currentUserSubject.asObservable().pipe(share());
RxJS 6 - What Changed? What's New?
我需要.share()函数吗?
取决于您的使用案例,如果您没有使用多个异步pipe
,则不需要share
操作员
Subject
充当源Observable
和许多observers
之间的桥梁/代理,使多个observers
可以共享相同的Observable
执行。\ br />
异步管道不使用共享或对模板中的多次重复使用进行任何优化。它为模板中每次使用异步管道创建订阅。
<强> 参见 强>:
RxJS: Understanding the publish and share Operators