0

我有一个基于类的组件,我在其中通过操作调用 redux 存储。

class App extends Component {
//Calling Constructor & setting State & other things
this.executeAction("someAction");
}

我想知道功能组件中的替代方案是什么。Ps:-我不确定它是否是某个图书馆。

4

1 回答 1

1

您可以使用useDipatch钩子从react-redux

import { useDispatch } from 'react-redux'
function App() {
    //Calling Constructor & setting State & other things
    const dispatch = useDispatch()
    dispatch("someAction")
}
于 2021-01-15T20:21:21.643 回答