admin管理员组文章数量:1341473
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 badges1 Answer
Reset to default 13First 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.
本文标签: javascriptHow to manage the state in RemixStack Overflow
版权声明:本文标题:javascript - How to manage the state in Remix? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743674140a2520027.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论