我正在创建一个Angular2服务。我使用了http.post方法,该方法返回一个EventEmmiter并根据我接下来传递的文档并返回lambdas。 https://angular.io/docs/js/latest/api/http/Http-class.html
下一个lambda按预期工作但返回lambda根本没有被调用。
当我尝试返回this.user时。由于后期操作尚未完成,因此为空。在auth响应恢复之前我应该怎么做才能等待。
如果我选择进行反应式编程并希望返回一个Rx.Observable作为此方法的返回。如何创建此Rx.Observable,它将订阅http post observable complete事件。
@Injectable()
export class LoginService {
http:Http;
headers:Headers;
user:User;
constructor(http: Http) {
this.http=http;
this.headers=new Headers();
this.headers.set('Content-Type','application/json');
this.user = new User();
}
authenticateUser(credential:Credential) {
credential.type = 'normal';
this.http.post('http://localhost:8000/api/v1/auth',
JSON.stringify(credential),
{
headers: this.headers
}
).observer({
next: (res) => {
if(res.json()._error_type){
console.log('Error Occured');
}
console.log(res.json());
this.user.authToken = res.json().auth_token;
},
return: () => {
console.log("Logged In");
return "LoggedIn Success"
}}
);
console.log(this.user);
return this.user;
}
}
export class User{
authToken:String;
}
export class Credential{
username:string;
password:string;
type:string;
}
答案 0 :(得分:2)
这就是我将字符串observable附加到http调用响应
的方法 authenticateUser(credential:Credential):Rx.Observable<string> {
credential.type = 'normal';
return Rx.Observable.create<string>(
observer => {
var val:String;
this.http.post('http://localhost:8000/api/v1/auth',
JSON.stringify(credential),
{
headers: this.headers
}
).toRx().map(res => res.json()).subscribe(
(res) => {
if(res._error_type){
console.log('Error Occured');
observer.onError('ErrorOccured');
} else {
this.user = new User();
this.user.authToken = res.auth_token;
observer.onNext('LoginSuccess');
}
observer.onCompleted();
});
return () => console.log('disposed')
}
);
}
以下是调用LoginService的UI组件
this.loginService.authenticateUser(credential).subscribe(val => {console.log('result:' + val)});