I'm going to be able to retrieve the data by calling getTicket via listTicket
listTicket :
listTicket()
{
objectTicket = this.getTicket();
objectTicket.map((userData)=>{
alert(userData.id)
})
}
getTicket Code:
async getTicket () {
return await fetch('url', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
uid: '1',
type: '0'
})
})
.then((response) => {return response.json()})
.then((responseJson) => {
return responseJson;
})
.catch((error) => {
alert(error);
});
}
I get this error:
typeerror objectTicket.map is not a function