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

时间:2017-03-31 10:19:16

标签: angular

我有一个模特:

export class CoreGoalModel {
  constructor(

    public title: string,
    public image: string, 

    ){}
}

我的服务:

  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 || { };
  }

然后在我的组件中:

ngOnInit() {

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

}

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

<ul>
    <li *ngFor="let goal of coreGoals">
        {{goal.title}}
    </li>
</ul>

我对服务器的实际回复:

[{"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"}]}]

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

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

1 个答案:

答案 0 :(得分:9)

您的错误在这里:

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

您的回复没有名为data的对象,因此请删除data并且它应该有效:

private extractData(res: Response) {
  let body = res.json();
  return body || { }; // here
}