使用routing url傳遞值,該如何傳送?

我已經在routing 設定
{ path: ‘ivp/:id’, component: IpvComponent}
在TS有接到值
該如何傳到PHP?

public id:any=[];
this.id = this.route.snapshot.paramMap.get(‘id’);
this.id=JSON.stringify(this.id);
this.http.post(‘http://localhost:8088/php/123.php’, this.id, { responseType: ‘text’}).subscribe(id=> {
console.log(this.id);
})


謝謝

當你使用 SPA, 基本上就處於前後端分離的狀態,所以要將資料傳到後端,通常是使用 API 的方式傳遞