Angular2 NgFor仅支持绑定到Iterables,例如Arrays错误

Thi*_*ker 7 angular

我有一个模特:

export class CoreGoalModel {
  constructor(

    public title: string,
    public image: string, 

    ){}
}
Run Code Online (Sandbox Code Playgroud)

我的服务:

  getGoals(): Observable<CoreGoalModel[]> {

    let headers = new Headers({ 'Access-Control-Allow-Origin': '*' });
    let options = new RequestOptions({ headers: headers });

    return this.http.get(this.base_url + 'coregoal', options)
    .map(this.extractData)
    .catch(this.handleError);
  }

  private extractData(res: Response) {
    let body = res.json();
    return body.data || { };
  }
Run Code Online (Sandbox Code Playgroud)

然后在我的组件中:

ngOnInit() {

    this.homeService.getGoals()
    .subscribe(
                 goals => this.coreGoals = goals,
                 error =>  this.errorMessage = <any>error);

}
Run Code Online (Sandbox Code Playgroud)

然后我在我的模板中将其绑定为:

<ul>
    <li *ngFor="let goal of coreGoals">
        {{goal.title}}
    </li>
</ul>
Run Code Online (Sandbox Code Playgroud)

我从服务器的实际响应:

[{"coreGoalId":1,"title":"Core goal 1","infrastructure":"Sample Infrastructure","audience":"People","subGoals":null,"benefits":[{"benefitId":1,"what":"string","coreGoalId":1}],"effects":null,"steps":null,"images":[{"imagelId":1,"base64":"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcU\nFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgo\nKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wgARCAIWAe4DASIA\nAhEBAxEB/8QAHAABAAIDAQEB"}]}]
Run Code Online (Sandbox Code Playgroud)

这引起了我的错误 Cannot find a differ supporting object '[object Object]' of type 'object'. NgFor only supports binding to Iterables such as Arrays.

我究竟做错了什么?我只想迭代coreGoals属性,并访问它的子项及其属性.

AJT*_*T82 9

你的错误在这里:

private extractData(res: Response) {
  let body = res.json();
  return body.data || { }; // error
}
Run Code Online (Sandbox Code Playgroud)

您的响应没有指定对象data,因此删除data它应该工作:

private extractData(res: Response) {
  let body = res.json();
  return body || { }; // here
}
Run Code Online (Sandbox Code Playgroud)