'Trying to access response data using fetch
I'm trying something simple where I make a request from the front end of my app using the fetch API like so
let request = new Request('http://localhost:3000/add', {
headers: new Headers({
'Content-Type': 'text/json'
}),
method: 'GET'
});
fetch(request).then((response) => {
console.log(response);
});
I am handling this request on the server like so,
app.get('/add', (req, res) => {
const data = {
"number1": "2",
"number2": "4"
};
res.send(data);
});
However, when I try to access my data on the front end console.log(response), I get the following object
Response {type: "basic", url: "http://localhost:3000/add", redirected: false, status: 200, ok: true…}
body:(...)
bodyUsed:false
headers:Headers
ok:true
redirected:false
status:200
statusText:"OK"
type:"basic"
url:"http://localhost:3000/add"
__proto__:Response
The response body is empty. I assumed that's where the data would show up? How do I pass data effectively from the server?
Solution 1:[1]
Could also split in to two like this
async fetchData() {
let config = {
headers: {
'Accept': 'application/json' //or text/json
}
}
fetch(http://localhost:3000/add`, config)
.then(res => {
return res.json();
}).then(this.setResults);
//setResults
setResults(results) {
this.details = results;
//or: let details = results
console.log(details) (or: this.details)
Solution 2:[2]
Like @random_coder_101, you can also write it without nesting:
fetch(request)
.then(resp => resp.json())
.then(data => { console.log(data) })
.catch(err => { console.log(err) });
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Paul Anthony McGowan |
| Solution 2 | BiteBat |
