SSR doesn't auto fetching data when CSR
Hi,
Currently, I've create some routes for SSR purpose and they work perfectly.
However, If I go to the page SSR then navigating through some page and back to the SSR page the data SSR before is loss.
Do I need do other step to ensure keep the data for the page? Or need something to switch from SSR to CSR during navigating?
8 Replies
query
doesn't hold on to data for long, it's only designed to dedupe requests for situations like preloading data on a link hover, then navigating after clicking the link. If you want the data to be cached, use something like Tanstack Query.Not sure why but if I wraper template jsx(included render data from API call) inside a <Show when={data()}></Show> it will keep the data there even navigate to other page and back CSR
If you use
data()
inside jsx, then the navigation is probably waiting until the data loads for the second time, since navigations happen in a Transition
The log will be undefined
since the query
isn't holding onto the previous data, but you won't actually see the navigation happen until the data loads bc of the TransitionYep, exactly what happened there
I wonder about why it can work if wraped by <Show> element?
Are you using
data()
anywhere else in the jsx?
If so then it should work without <Show>
I've used data() inside another component for eg: <div><Product info={data()?.info}></Product></div>. And I got the issue after using Show like <Show when={data()}><div><Product info={data().info}></Product></div></Show> I don't see the issue anymore. I'm using Show because seeing a tuturial about solid start in youtube called learn with jacobs but they don't explain why I need it
The
<Show>
should only be needed so that you don't end up doing info={undefined}
and getting errors
I wouldn't expect it to have an effect on the loading behaviour (unless it's the only place you call data()
)Yep, It should be like that. Let me create a repoduce repo for this case when have time.