react-redux中“@@ INIT”操作的目的是什么?

时间:2016-12-23 17:22:17

标签: javascript reactjs redux

注意到它始终是打开页面时调度的第一个操作。它是否用于使用reducer的默认状态初始化存储?

1 个答案:

答案 0 :(得分:7)

我认为这会回答你的问题。

// When a store is created, an "INIT" action is dispatched so that every
// reducer returns their initial state. This effectively populates
// the initial state tree.

dispatch({ type: ActionTypes.INIT })

Source