Redux Toolkit RTK查询useMutation并保留缓存数据

Redux Toolkit RTK Query useMutation and keep cached data

根据文档:'Subscribes' the component to keep cached data in the store, and 'unsubscribes' when the component unmounts

有没有办法在任何地方保留突变缓存而不是 'unsubscribe' 它?我的意思是我可以在不同的组件中调用 useMutation 并获取所有这些组件(如查询)的缓存数据和状态同步。因为现在,一旦组件卸载,我就会丢失数据。

目前没有,但有一个正在进行的拉取请求,它将进入下一个次要版本。

您可以在这里解决: https://github.com/reduxjs/redux-toolkit/pull/1477