Daniel Everett
Daniel Everett
Explore posts from servers
KPCKevin Powell - Community
Created by Daniel Everett on 9/8/2023 in #os-and-tools
Netlify and node js
No description
42 replies
KPCKevin Powell - Community
Created by Daniel Everett on 9/6/2023 in #back-end
Unable to fetch data from API (Node JS server)
I am trying to fetch data from my database through my node js, but I keep getting an error of Error: SyntaxError: Unexpected token '<', "<!DOCTYPE "... is not valid JSON, is there anything I can do to prevent this? My code for the client side is: https://srcshare.io/64f7d7f6a897f132d4fe3c44 My code for the server is:
app.get('/getBlogs', (req, res) => {
supabase
.from('blogs')
.select('*')
.then(blogs => {
res.json(blogs)
})
.catch(error => {
console.error('Error:', error);
res.status(500).send('Error retrieving data from database!');
})
});
app.get('/getBlogs', (req, res) => {
supabase
.from('blogs')
.select('*')
.then(blogs => {
res.json(blogs)
})
.catch(error => {
console.error('Error:', error);
res.status(500).send('Error retrieving data from database!');
})
});
I am unsure of why this is happening, full stack is HTML, CSS, JS (Node & Express), and Supabase (Database)
4 replies