gpt4 book ai didi

angular - 调用 Http.post 不会触发 Angular 6 中的帖子

转载 作者:太空狗 更新时间:2023-10-29 17:41:50 24 4
gpt4 key购买 nike

我根据我的模型使用 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);
}

}

谢谢!

最佳答案

除非您订阅可观察对象,否则永远不会进行 HTTP 调用,这是在组件内完成的,如下所示:

this.userService.login(username, password).subscribe((result) => {
// This code will be executed when the HTTP call returns successfully
});

关于angular - 调用 Http.post 不会触发 Angular 6 中的帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51224862/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com