要在Angular组件中显示POST请求的结果,可以按照以下步骤进行操作:
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
constructor(private http: HttpClient) { }
postData(data: any): Observable {
  const url = 'https://example.com/api/post'; // 替换为你的POST请求的URL
  return this.http.post(url, data);
}
  
response: any;
sendPostRequest() {
  const postData = { /* 构建你的POST请求数据 */ };
  this.postData(postData).subscribe(
    (result) => {
      this.response = result; // 将结果存储在组件属性中
    },
    (error) => {
      console.error('An error occurred:', error);
    }
  );
}
  POST请求结果:
  {{ response | json }}
在这个示例中,使用了*ngIf指令来确保只有在请求完成并且结果存在时才显示结果。
这样,当调用sendPostRequest方法时,你的组件将发送POST请求,并将结果显示在模板中。
请注意,上述代码中的URL和POST请求数据应根据你的实际情况进行替换。