我是Angular的新手,并跟随this tutorial学习基础知识。考虑以下http get调用。
getHeroes(): Promise<Hero[]> {
return this.http.get(this.heroesUrl)
.toPromise()
.then(response => response.json().data as Hero[])
.catch(this.handleError);
}
在将observable转换为promise后,如何使用then()子句中的函数真正利用响应(例如,控制台日志,解析和访问响应元素等等)?
我尝试了以下操作,即使它记录了响应,我也无法真正访问响应对象中的任何内容。
this.http.get(url, {headers : this.headers})
.toPromise()
.then(function(res) {
console.log(res);
return res => res.json().data as Query[];
})
.catch(this.handleError);
非常感谢任何帮助。谢谢。
答案 0 :(得分:3)
Angular2使用RXjs可观察而不是承诺。它的工作原理如下。
按如下方式创建httpService。
<强> httpService.ts 强>
import {Injectable, Inject} from '@angular/core';
import {Http, Response, RequestOptions, Request, Headers} from '@angular/http';
declare let ApiUrl : any;
@Injectable()
export class httpService {
constructor(private http: Http){}
getHeader = () => {
let headers = new Headers();
headers.append("Content-Type", 'application/json');
return headers;
};
request = (req) => {
let baseUrl = ApiUrl,
requestOptions = new RequestOptions({
method: req.method,
url: baseUrl+req.url,
headers: req.header ? req.header : this.getHeader(),
body: JSON.stringify(req.params)
});
return this.http.request(new Request(requestOptions))
.map((res:Response) => res.json());
}
}
现在只需在您的组件/指令中使用此服务,如下所示:
<强> componenet.ts 强>
import {Component, Inject, Directive, Input, ElementRef} from '@angular/core';
@Directive({
selector: '[charts]' // my directive name is charts
})
export class chartsDirective{
constructor(@Inject('httpService') private httpService){}
ngOnInit(){
this.httpService.request({method: 'POST', url: '/browsers', params:params, headers: headers})
.subscribe(
data => self.data = data, //success
error => console.log('error', error),
() => {console.log('call finished')}
)
}
}
最后你只需要将你的httpService添加到ngModule的提供者:
<强> appModule.ts 强>
import {NgModule} from '@angular/core';
import {ApiService} from "./api.service";
@NgModule({
providers: [
{provide : 'httpService', useClass : httpService}
]
})
export class apiModule{}
现在,您可以像在component.ts
中一样注入代码中的任何地方使用httpService答案 1 :(得分:1)
这里有一个如何做到的例子。
没有必要,但提供了一个很好的代码结构,创建一个处理所有用户请求的服务:
用户服务
@Injectable()
export class UserService {
constructor(private http: Http) { }
getById(id: string): Observable<User> {
return this.http.get("http://127.0.0.1" + '/api/CustomUsers/' + id)
// ...and calling .json() on the response to return data
.map((res: Response) => {
var user = User.withJSON(res.json());
return user;
})
//...errors if any
.catch((error: any) => Observable.throw(error));
}
}
所以这里我们获取具有给定id的用户并使用返回的json创建一个用户对象。
用户模型
export class User {
constructor(public id: string, public username: string, public email: string) {
}
static withJSON(json: any): User {
// integrity check
if (!json || !json.id || !json.username || !json.email) { return undefined; }
var id = json.id;
var username = json.username;
var email = json.email;
// create user object
var user = new User(id, username, email);
user.firstname = firstname;
return user;
}
服务电话
this.userService.getById(this.id).subscribe(user => {
this.user = user;
},
err => {
console.error(err);
});
希望这有帮助
答案 2 :(得分:0)
我有类似的问题。调试响应对象后,我发现res.json()对象上不存在数据。改为改为:
this.http.get(url, {headers : this.headers})
.toPromise()
.then(function(res) {
console.log(res);
return res => res.json() as Query[];
})
.catch(this.handleError);
请注意,我所做的只是更改了显示return res => res.json().data as Query[];
到return res => res.json() as Query[];