hannus
How do you get createAsync to refetch or mutate?
1. Preload the query and render its data inside a route component using createAsync.
2. Revalidate the key of the query rendered in the route component. This ensures that the query data is refreshed when an action is executed.
The query functions like a GET method, while the action functions like a POST method.
12 replies
Google Analytics
step1: create script with
createScriptLoader
. asnyc() is must.
step2: insert {gaTag}
into JSX, such as header or footer inside the router component.
that will work. Key points: 1. async() 2.insert to JSX where you want to collect statistics5 replies
Best LTS / Stable use of Solid for projects & business?
the latest version of solid-start is support tailwind 4 and vite 6, what's more, it supports tanstack router officially. Thus, my advice is try the latest version especially you have used tanstack/router in react.
2 replies
Duplicate `<link rel="canonical">` in SolidStart
yes, I am using solid-meta. Only Link has data-sm property in the page after rendered. If I removed <Link rel="canonical" href="https://www.example.com/" />, everything goes well.
25 replies
Modifying Signals Returned by createAsync in SolidJS: Best Practices and Alternatives
thanks. My understanding is that the value returned by createAsync is a signal, and if I want to modify it, based on the principle of unidirectional data flow, the best practice is to notify its data source that the data has been updated. Specifically, this can be done by using an Action to modify the data source. Once the data source is updated, the signal value obtained by createAsync will automatically be updated accordingly.
Is my understanding correct?
4 replies
How can I make createEffect in SolidJS execute only when the dependency variable changes, and not wh
Thanks, it works. You’ve been a great help to me.
If I have more than one signal to depend on, such as value() and title(), how should I handle it?
18 replies
How can I make createEffect in SolidJS execute only when the dependency variable changes, and not wh
Thanks. However, it doesn’t work. The effect doesn’t execute, not only during the initial run but also when the value is updated afterward.
18 replies