Вы должны использовать fetch
API, который не требует никакой библиотеки для работы.
onItemClick(a) {
console.log("Button was clicked!");
var desc = Flightdesc.info.departureinformation.routeshow.description;
const yourBaseUrl = 'http://localhost:3000'; // example
const path = '/flyrules.inc';
const bodyParams = { id: desc };
const url = new URL(path, yourBaseUrl);
fetch('/flyrules.inc', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(bodyParams)
})
.then((response) => response.json())
.then((data) => data);
}