我正在尝试从我的角度应用程序对localhost执行对我的api的获取请求。但由于某种原因,角度http客户端似乎不执行get请求。
我可以在我的api服务器上看到没有收到请求。这导致了错误。 api工作正常我试着做一个卷曲,我得到了预期的结果。
EXCEPTION:Uncaught(承诺):TypeError:无法读取属性' subscribe'未定义的
api.service
import { Injectable } from '@angular/core';
import { Headers, Http, Response, URLSearchParams, RequestOptions } from '@angular/http';
import { Observable } from 'rxjs/Rx';
@Injectable()
export class ApiService {
headers: Headers = new Headers({
'Accept': 'application/json',
'Content-Type': 'application/json'
});
api_url: string = 'http://localhost:5001';
constructor(private http: Http) { }
private getJson(response: Response) {
return response.json().results;
}
checkForError(response: Response): Response {
if (response.status >= 200 && response.status < 300) {
return response;
} else {
var error = new Error(response.statusText);
error['response'] = response;
Observable.throw(error);
}
}
get(path: string, params: URLSearchParams): Observable<any> {
return this.http
.get(`${this.api_url}${path}/`, { headers: this.headers })
.map(this.checkForError)
.catch(err => Observable.throw(err))
.map(this.getJson);
}
api.component.ts
import { Component, OnInit } from "@angular/core";
import { ApiService } from './api.service';
@Component({
selector: 'item',
templateUrl: './item.component.html'
})
export class ItemComponent implements OnInit {
private itemData;
private errorAlert;
constructor(private apiService: ApiService) {}
ngOnInit() {
this.apiService.get('/items').subscribe(
result => this.itemData = result,
error => this.errorAlert = {msg: error, type: 'danger', closable: true},
);
}
}
答案 0 :(得分:3)
也许您应该尝试回溯(或转发)问题:
从:
开始 this.http.get('/my/hardcoded/url').subscribe();
问题可能出在标题或内插网址或任何地方。