如何在Redux中使用React Context API?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Redux中使用React Context API?相关的知识,希望对你有一定的参考价值。

我有一个React Redux应用程序,我想使用React Context API来做我想做的一件事情

所以我有这个

<Provider value="something" store=store>
      // stuff in here
</Provider>

效果很好,但随后我尝试添加上下文

const AppTypeContext = React.createContext('someContext' as any)

<AppTypeContext.Provider value="myValue" store=store>
      // stuff in here
</AppTypeContext.Provider>

然后我的应用抛出了错误,提示Property 'store' does not exist on type 'IntrinsicAttributes & ProviderProps<any>'. TS2322

我该如何解决?以及我需要使用什么提供者?

答案
None

以上是关于如何在Redux中使用React Context API?的主要内容,如果未能解决你的问题,请参考以下文章

手写一个React-Redux,玩转React的Context API

如何将 React Context API 与 useReducer 一起使用以遵循与 Redux 类似的风格 [关闭]

ReactJS Redux State(全局状态)+ React.Context(本地状态)

Redux和React-Redux的实现:Redux的实现和context

通过根组件中的 React Context 传递 Redux 存储是不是正确?

当我使用 ReactJS 从数据表中删除行而不使用 Redux 或 Context 时,如何刷新数据表?