i m having problems getting Sapper expample blog to work with getting real data from the a data base. In the Example the data is served from a js file. I tried to replace the data with my own, fetching is from the server like so in the _post.js
import fetch from "node-fetch";
export default (async () => {
const response = await fetch('https://www.exampleserver.de/posts?id=1309');
let json = await response.text();
//json = JSON.parse(json);
posts = json;
return posts;
})()
but it gives me this error
TypeError: posts$1.map is not a function
at Object.<anonymous> (/Users/mark/01_m_code/01 SVELTE SAPPER/04 blog/__sapper__/dev/server/server.js:43:41)
I have to admit that i am pretty new to sapper and svelte and maybe i don t have a proper understanding of how the slug thing really works. any help appreciated
An
async
function always returns a promise — when you seeposts$1.map is not a function
, that's because the promise doesn't have a map method (and if it did, it wouldn't be what you wanted).Basically, you'll need to
await
that promise in route handlers that need that data: