我想在Angular中使用第二个可观察链,其中第二个可观察函数需要输出第一个observable作为参数。
我创建了一个这样的可观察对象:
storeData(response: any): Observable<any> {
return Observable.create((observer) => {
// storing the data in localstorage
this.storage.ready().then(() => {
this.storage.set('USERACCESSTOKEN', response.token).then(() => {
this.storage.set('USERROLE', response.user_role).then(() => {
delete response.token;
this.storage.set('USERDATA', response).then(() => {
this.setLoggedIn(true);
observer.complete();
})
})
})
})
});
}
我想在我的登录页面中使用如下:
login(form: any, event: Event): void {
this.authService.otpVerify(form)
.switchMap((data) => this.authService.storeData(data))
.subscribe(response => {
if(this.navCntrl.canGoBack())
this.navCntrl.pop();
else
this.navCntrl.setRoot('TabsPage');
}, (err)=>{
console.log("your credentials doesn't match");
});
}
来自otpVerify
,我会得到这样的答案:
{
"success" : true,
"message" : "Login success",
"token" : "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJod…n19fQ.EMMT6wJeoF7Y52c3UQzgw3rkTY0WduGYq...........",
"name" : "Jony",
"user_role" : "editor"
}
此处正确的凭据检查后,我还想检查 user_role 。如果user_role与响应匹配(编辑或订阅者),则只会转到switchMap((data) => this.authService.storeData(data))
阻止,否则会显示此角色不允许对话框&amp;数据也没有存储。 [我没有在这里添加这个逻辑,因为我不知道如何做到这一点。但这就是我要找的东西]。
otpVerify
中的 AuthService
函数就是这样的:
otpVerify(body: any): Observable<any> {
let headers = new Headers();
headers.append('Content-Type', 'application/json');
this.options = new RequestOptions({ headers: headers });
return this.http.post(AppSettings.API_ENDPOINT2 + 'login', body, this.options)
.map(response => response.json())
.catch(this._errorHandler);
}
在这个otp验证之后,我还想让条件看出它是否是有效用户。如果一切顺利,我将存储数据,否则显示一些错误消息。请帮我解决这个问题。
答案 0 :(得分:0)
好的,根据我对您最近的编辑的理解,这将给我们以下内容:
login(form: any, event: Event): void {
this.authService.otpVerify(form)
.switchMap(
(data: any) => {
if (data.user_role === "editor" || data.user_role === "subscriber") {
return this.authService.storeData(data);
} else {
console.log("Insufficient privileges");
}
},
(err) => console.log(err))
.subscribe(() => {
if (this.navCntrl.canGoBack()) {
this.navCntrl.pop();
} else {
this.navCntrl.setRoot('TabsPage');
}
});
}
switchMap中的代码检查角色,只有在权限足够的情况下才会调用storeData
。