You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
I want to return promise in session option of sapper.middleware. But if I got an error saying Failed to serialize session data: Cannot stringify arbitrary non-POJOs. It seems that the session option does not support promise. Is there any workaround?
I don't think there's a technical reason for this. It looks like we should be able to add an awaithere. I don't know whether there'd be some other reason not to do this.
I don't think there's a technical reason for this. It looks like we should be able to add an awaithere. I don't know whether there'd be some other reason not to do this.
In my case I would like to return a promise and pass it to the next component so I can do something like:
{#await promise}
//any kind of loading indicator
{:then res}
Am I'm implementing this wrong? I saw this kind of examples in Svelte's documentation, so I believed this is a good way to do a loader.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I want to return promise in session option of sapper.middleware. But if I got an error saying
Failed to serialize session data: Cannot stringify arbitrary non-POJOs
. It seems that the session option does not support promise. Is there any workaround?The text was updated successfully, but these errors were encountered: