1

我正在尝试遵循这些指示:https://angular.io/docs/ts/latest/guide/server-communication.html并以对象(不是 json)的形式从服务器获取对象列表。

我有一个模型类(现在简化):

export class Goal {
  id: number;
  title: string;
}

我正在尝试通过服务类从服务器获取这些列表,如下所示:

export class GoalsService {

  constructor(public authHttp:AuthHttp) {
  }

  getGoals() {
    let headers = new Headers({ 'Content-Type': 'application/json' });
    let options = new RequestOptions({ headers: headers });

    return this.authHttp.get('<%= BACKEND_BASE_URL %>' + '/rrm/api/v1/goals', options)
      .map(res => {
          <Goal[]> res.json()
        }
      )
      .do(data => console.log(data))
      .catch(this.handleError);
  }
...

使用服务类的客户端是:

loadGoals() {
    this.goalsService.getGoals().subscribe(
      goals => this.goals = goals
    );
  }

请求正常通过,我回来了:

[{"id":1,"title":"target"}]

但是,在客户端内部subscribegoals变量始终是“未定义的”。

我尝试调试它,这是我得到的: 在此处输入图像描述

这对我说 json 正确接收和解析,但是将其转换为目标对象不起作用(除非我没有完全了解该机制)。

我究竟做错了什么?

谢谢,

注意:authHttp我使用的服务是这个人:https ://auth0.com/blog/2015/11/10/introducing-angular2-jwt-a-library-for-angular2-authentication/ 。它可以按预期在所有其他地方工作。所以我怀疑这是一个问题。

4

1 回答 1

3

当您使用map箭头功能时,您应该return映射结果。

return this.authHttp.get('<%= BACKEND_BASE_URL %>' + '/rrm/api/v1/goals', options)
  .map(res => {
      return <Goal[]> res.json(); //return mapped object from here
    }
)

或者

return this.authHttp.get('<%= BACKEND_BASE_URL %>' + '/rrm/api/v1/goals', options)
  .map(res => <Goal[]> res.json()) //or simply do map object directly
于 2016-04-14T08:02:17.350 回答