admin管理员组文章数量:1355542
How to return value when using pipe and map, like in this scenario:
return this.service.someEvent().pipe(
map(x => {
return this.service.someValue;
})
)
but the value is never returned since never subscrubed to the event, if i use it like this:
const a = this.service.someEvent().pipe(
map(x => {
return this.service.someValue;
})
)
return a.subscribe();
i get an error (i know this is wrong).
TS2322: Type 'Subscription' is not assignable to type 'boolean | Observable<boolean> | Promise<boolean>'. Type 'Subscription' is not assignable to type 'Promise<boolean>'. Property 'then' is missing in type 'Subscription'.
So i need i way to return the value.
UPDATE: the better description (i need to duplicate this code with the latest version of rxjs):
canActivate(next: ActivatedRouteSnapshot,
state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
return this.service.something().map(x => {
if (x) {
return true;
} else {
return false;
}
})
}
need to do it with map inside pipe (as i understood).
How to return value when using pipe and map, like in this scenario:
return this.service.someEvent().pipe(
map(x => {
return this.service.someValue;
})
)
but the value is never returned since never subscrubed to the event, if i use it like this:
const a = this.service.someEvent().pipe(
map(x => {
return this.service.someValue;
})
)
return a.subscribe();
i get an error (i know this is wrong).
TS2322: Type 'Subscription' is not assignable to type 'boolean | Observable<boolean> | Promise<boolean>'. Type 'Subscription' is not assignable to type 'Promise<boolean>'. Property 'then' is missing in type 'Subscription'.
So i need i way to return the value.
UPDATE: the better description (i need to duplicate this code with the latest version of rxjs):
canActivate(next: ActivatedRouteSnapshot,
state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
return this.service.something().map(x => {
if (x) {
return true;
} else {
return false;
}
})
}
need to do it with map inside pipe (as i understood).
Share Improve this question edited May 16, 2018 at 17:02 Igor asked May 16, 2018 at 15:34 IgorIgor 2772 gold badges7 silver badges16 bronze badges 1-
1
This looks like you're trying to call
return a.subscribe();
in a method whose typings say it should returnObservable
. Functionsubscribe()
returnsSubscription
instance – martin Commented May 16, 2018 at 15:38
1 Answer
Reset to default 3You can simply return the observable itself from the "canActivate" guard :-
canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
return this.service.something().pipe(map(x => {
if (x) {
return true;
} else {
return false;
}
}));
}
Routing will proceed only after the returned observable is plete and its emitted value is true. So you don't actually have to worry about subscribing to that observable angular router will handle it of its own.
本文标签: javascriptrxjs returning value with pipe(map)Stack Overflow
版权声明:本文标题:javascript - rxjs: returning value with pipe(map) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744052547a2582685.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论