javascript - How to manage the state in Remix? - Stack Overflow

I was going through Remix for quite a sometime but still not able to figure out state management.How t

I was going through Remix for quite a sometime but still not able to figure out state management. How to share the data between the ponents/routes? How to store the data which can be accessible by any ponent? And should be able to update the data from any child ponent.

I was going through Remix for quite a sometime but still not able to figure out state management. How to share the data between the ponents/routes? How to store the data which can be accessible by any ponent? And should be able to update the data from any child ponent.

Share edited Dec 1, 2022 at 14:37 Daniel A. White 191k49 gold badges379 silver badges465 bronze badges asked Dec 1, 2022 at 9:23 venky royalvenky royal 2,2502 gold badges15 silver badges22 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

First of all, remember that Remix is still React, so all the state management techniques you're used to still work with Remix.

With that being said, Remix uses loaders to manage the server-side state. You can access this via useLoaderData from any ponent in the current route. You're not limited to just the route file.

Also, via useMatches you have access to all the loader data across your nested routes from root to leaf.

Mutations should be done via actions, so instead of trying to mutate local data, POST to your action the update, and let Remix revalidate your routes to make sure your local data is in sync.

Purely client-side state, like if a dialog is visible, etc. can still be managed with useState, etc.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743674141a4488277.html

相关推荐

  • javascript - How to manage the state in Remix? - Stack Overflow

    I was going through Remix for quite a sometime but still not able to figure out state management.How t

    18小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信