Redux連續(xù)多次dispatch會觸發(fā)多次render嗎
1 回答

長風(fēng)秋雁
TA貢獻1757條經(jīng)驗 獲得超7個贊
可能是你的action沒有connect到組件上,沒有把這個方法傳過來。
參考我寫的一個方案
<pre t="code" l="js">
@connect(
state =; state,
dispatch =; bindActionCreators(action, dispatch)
)
2.根據(jù)redux文檔的方案
<pre t="code" l="js">
// 哪些 action 創(chuàng)建函數(shù)是我們想要通過 props 獲取的看
function mapDispatchToProps(dispatch) {
return {
onIncrement: () =; dispatch(increment())
};
}
export default connect(
mapDispatchToProps
)(Counter);
- 1 回答
- 0 關(guān)注
- 1682 瀏覽
添加回答
舉報
0/150
提交
取消