5 ms·
but how would you deal with async data fetches then? I want to have the same routing and data fetching logic both on the client and on the server, and for that
by d4n3 12y ago
but how would you deal with async data fetches then?
I want to have the same routing and data fetching logic both on the client and on the server, and for that I would need to have stores that are independent for different incoming HTTP requests.
- bryanlarsen 12y agoI'm not sure how you're supposed to do it, but that hasn't been a problem for me. I set up two actions: load and init. load starts a request and init sets the data in the store.