Answers for "{"_U": 0, "_V": 0, "_W": null, "_X": null}"

0

{"_U": 0, "_V": 0, "_W": null, "_X": null}

getData = () => {
    fetch('http://192.168.64.1:3000/getAll',{
        method: 'GET',
        headers: {
            Accept: 'application/json',
            'Content-Type': 'application/json'
        }
    })
    .then(response => response.json())
    .then(data => {
        console.log(data);
    })
    .catch(err => console.error(err));
}
Posted by: Guest on May-04-2022

Code answers related to "{"_U": 0, "_V": 0, "_W": null, "_X": null}"

Browse Popular Code Answers by Language