我在尝试使用httpclient发出请求时遇到了一个问题,节点服务器没有收到任何信息。。。
当我收到 Postman 的请求时,一切都很顺利
以下是angular应用程序的代码:
import { HttpClient, HttpParams } from '@angular/common/http';
export class GhaApi {
private baseUrl: string;
constructor(private http: HttpClient) {
this.baseUrl = 'http://localhost:3000/api/';
}
public putFunc(data, id) {
return(this.http.put(this.baseUrl + 'update/' + id, {
image: data.image,
sentence: data.sentence
}))
}
暂无答案!
目前还没有任何答案,快来回答吧!