get request
Sun Jul 23 2023 08:52:32 GMT+0000 (Coordinated Universal Time)
Saved by
@nelson22
$.ajax({
type: 'GET',
url: 'http://localhost:8081/chargingStationApi/api/v1/dashboard/aDashboard',
enctype: 'multipart/form-data',
headers: authHeader,
processData: false,
contentType: false,
data: null,
success: function (response) {
console.log(response);
$('#weekSessionscount').text(response.payload.weekSessionscount);
},
error: function (error) {
console.log(error);
}
})
content_copyCOPY
Comments