📅  最后修改于: 2022-03-11 15:04:05.243000             🧑  作者: Mango
ngOnInit() {
this.http.post('https://jsonplaceholder.typicode.com/posts', { title: 'Angular POST Request Example' }).subscribe(data => {
this.postId = data.id;
})
}