将http响应从JSON对象转换为Typescript类

时间:2017-04-17 12:43:04

标签: json spring-boot angular2-services

我在后端运行了一个spring boot web api,我试图从一个有角度的2 webApp中获取它,HTTP响应如下所示

HTTP response

我尝试做的是将收到的JSON对象转换为已定义的Typescript类的响应,以便我可以在我的应用程序中使用

HTTPService.ts

1 个答案:

答案 0 :(得分:0)

Angular 2使用subscribe方法。试试这个:

this.http.get('https://www.reddit.com/r/gifs/new/.json?limit=10').map(res => res.json()).subscribe(data => {
    this.posts = data.data.children;
});

在Ionic 2演示中使用:https://www.joshmorony.com/using-http-to-fetch-remote-data-from-a-server-in-ionic-2/