How to force refetch on createResource trigger with same fetcher id
createResource(() => props.id, fetch_calculation)
when props.id triggers twice with the same value like 'abc' and 'abc', createResource doesn't refetch.
I want it to refetch to get a fresh clone of the fetch_calculation result.
A workaround would be to add a random value at the end of the id everytime and skip it in the calculations.7 Replies
you can use
equals:false
on the signal you are passing to the propsno that doesn't work, even though signal triggers, which I can test by logging in createEffect, the resource doesn't refetch.
I ended up wrapping the id in an array which will be referentially different on each trigger, and test the inside of the array on calculations. which will also allow refetch on undefined for the id value.
which is the correct behaviour for createResource.
doesn't the createResource give you a refetch method?
use that effect to run it
why would I add extra code when createResource should work as expected
I think the
createResource
works as the creators of it expected it to work.
if you think that it might be a bug, or that it should work more like you expect it to work
you can open bug report on github.
I also assumed that the {equals:false}
should have worked so perhaps there is a bug
or a design choice who knows.should work as expectedOur expectations often mislead us. Do you find it inconvenient right now that it works the way it does? Sure. The moment you reach for
equals: false
you should always ask yourself whether you are dealing with events rather than state. Signals are about reactive state, not events.
Implementation-wise the source
signal is wrapped inside a memo which defeats the equals: false
workaround. When you update state with an identical value state does not change. So
source
- for state based interaction
refetch
- for event based interaction
https://playground.solidjs.com/anonymous/ebf32cf7-7b2e-48e1-b3c8-d616fe5dad86Solid Playground
Quickly discover what the solid compiler will generate from your JSX template
GitHub
solid/packages/solid/src/reactive/signal.ts at 41fa6c14b4bf71eed593...
A declarative, efficient, and flexible JavaScript library for building user interfaces. - solidjs/solid
This works exactly how I want it to work like: