我使用this tool根据我的模型生成了实体组件和服务。
一切正常,但是尝试在我的API中登录用户时遇到了问题(该功能正常)。
未触发http.post()方法。我对angular还是很陌生,无法弄清楚我在做什么错。
任何帮助都会很棒!
这是我的UserService中的登录方法(该方法已正确调用,只是http.post()不起作用):
/**
* Log a user by its credentials.
*/
login(username : string, password : string) : Observable<NmUser> {
let body = JSON.stringify({
'username': username,
'password': password
});
console.log(body);
return this.http.post(this.userUrl + 'login', body, httpOptions)
.pipe(
map(response => new NmUser(response)),
catchError(this.handleError)
);
} // sample method from angular doc
private handleError (error: HttpErrorResponse) {
// TODO: seems we cannot use messageService from here...
let errMsg = (error.message) ? error.message : 'Server error';
console.error(errMsg);
if (error.status === 401 ) {
window.location.href = '/';
}
return Observable.throw(errMsg);
}
这是正在调用登录功能的页面:
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { NmUserService } from '../../app/entities/nmUser/nmUser.service';
@Component({
selector: 'page-login',
templateUrl: 'login.html',
providers: [NmUserService]
})
export class LoginPage {
constructor(private navCtrl: NavController, private userService: NmUserService) {
}
login(username: string, password: string): void {
this.userService.login(username, password);
}
}
谢谢!
答案 0 :(得分:11)
除非您订阅可观察对象,否则将永远不会进行HTTP调用,这是在组件内完成的,如下所示:
this.userService.login(username, password).subscribe((result) => {
// This code will be executed when the HTTP call returns successfully
});