代码之家  ›  专栏  ›  技术社区  ›  Imad El Hitti

从角度路径分解器返回多个信息

  •  1
  • Imad El Hitti  · 技术社区  · 6 年前

    在我的应用程序中,我面临着一个关于解析器返回的问题。

    基本上这就是我的分解者:

    constructor(private authService: AuthService) { }
      resolve() {
        /*
        this.authService.token; // (property) PeAuthService.authorizationHeader: string
        this.authService.getUserInfo(); // (method) PeAuthService.getUserInfos(): Observable<any>
        */
        return {
          token: this.authService.token,
          userInfo: this.authService.getUserInfo()
        };
      }
    

    我觉得我做的不正确,因为我可以访问令牌值,但不能访问用户信息。

    有没有方法返回一个包含用户信息数据和令牌的可观察数据?那么也许把一个可观测的和一个字符串组合在一个可观测的?

    2 回复  |  直到 6 年前
        1
  •  1
  •   martin    6 年前

    更多的“RX”方式将得到 getUserInfo() 然后把它和 this.authService.token 使用 map() 操作员:

    this.authService.getUserInfo()
      .pipe(
        map(userInfo => ({
          userInfo,
          token: this.authService.token,
        }))
      );
    
        2
  •  0
  •   David Walschots    6 年前

    在不等待价值的情况下, userInfo 返回对象的属性包含 Observable . 因此,只需使用 async await :

    async resolve() {
      return {
        token: this.authService.token,
        userInfo: await this.authService.getUserInfo()
      };
    }