我正在玩React和Redux,並遇到了連接問題。React + Redux:狀態undefined
const AppConnected = connect((state) => {text: state.text})(App);
在第一個示例中,我收到錯誤消息Cannot get 'text' of undefined
,而第二個示例運行沒有問題。這背後的原因是什麼?
const AppConnected = connect((state) => {
return {
text: state.text
}
})(App);