带有Observables的Angular 2 Http请求。如何使用.subscribe处理数据

时间:2017-03-22 14:39:14

标签: angular angular2-observables

我正在编写一个带有角度2的Web应用程序,并且有一个基于nodejs / express的API。

我已经启动并运行了身份验证,现在我想查询来自API的数据工作正常。

API从远程服务器获取其信息,并沿着{ "option1": "value1", "option2", "value2", ... }行发送json数组,这就是我的麻烦开始的地方。我可以毫无问题地获取数据并通过this.apiService.get('serverinfo').subscribe(console.log(response));的角度在我的控制台中打印它们,但即使我尝试正确地写入变量也无法在其他地方访问它们。

到目前为止,这是我的代码:

api.service.ts:

import { Injectable } from '@angular/core';
import { Headers, Http, Response, RequestOptions } from '@angular/http';

import { Observable } from 'rxjs/Rx';
//import { Observable } from 'rxjs/Observable';

export class Data {
}

// Import RxJs required methods
import 'rxjs/add/observable/of';
import 'rxjs/add/operator/do';
import 'rxjs/add/operator/delay';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';

@Injectable()
export class ApiService {
  private getUrl = 'http://localhost:3000/api/get/';

  constructor(private http: Http) { }


  get(what): Observable<Data[]> {
    var token = JSON.parse(localStorage.getItem('id_token'));
    return this.http
      .get(this.getUrl + what + '?token=' + token.token)
      .map(this.extractData)
      .catch(this.handleError);
//response => response.json() as Data[]
  }

  // localStorage.setItem('id_token', JSON.stringify({ token: body.token }));
  private extractData(res: Response) {
    let body = res.json();
    return body || {};
  }

  private handleError(error: Response | any) {
    // In a real world app, you might use a remote logging infrastructure
    let errMsg: string;
    if (error instanceof Response) {
      const body = error.json() || '';
      const err = body.error || JSON.stringify(body);
      errMsg = `${error.status} - ${error.statusText || ''} ${err}`;
    } else {
      errMsg = error.message ? error.message : error.toString();
    }
    console.error(errMsg);
    return Observable.throw(errMsg);
  }
}

overview.component.ts:

import { Component, OnInit } from '@angular/core';
import { ApiService, Data } from '../services/api.service'

@Component({
  selector: 'overview',
  templateUrl: './overview.component.html',
  styleUrls: ['./overview.component.scss']
})
export class OverviewComponent implements OnInit {
  constructor(public apiService: ApiService) { }

  data: Data = {};

  ngOnInit() { this.getData() }
  getData() {
    this.apiService.get('serverinfo').subscribe(console.log(response)); // Logs data correctly to console
    /*.subscribe( response => this.data = response )*/ // Can't access data from this one
   console.log(this.data)
  }
}

我认为它可能是数据类型的原因,我看到的例子是数据中的所有选项都预先配置在那里但我不能真的这样做,因为我有很大的对象,这些并不总是相同的结构

1 个答案:

答案 0 :(得分:0)

您的数据是一个对象:data: Data = {};但是在您获取的数据中,您将返回一个数组:get(what): Observable<Data[]>

试试这个:data: Data[] = [];