0
我是React Native(也是JavaScript)的新手。混淆react-redux和容器/組件
我其實並不很瞭解react-redux中的「connect」函數,以及它與Container/Component的關係。
我在container.js中看到了下面的代碼,它是如何影響component.js的?
export default connect(state => ({
state: state.counter
}),
(dispatch) => ({
actions: bindActionCreators(counterActions, dispatch)
})
)(CounterApp);
謝謝!
你真的應該檢查http://redux.js.org/docs/basics/UsageWithReact.html來獲取基礎知識:) –