React-Redux组件状态

时间:2018-06-11 10:43:39

标签: reactjs redux react-redux

tl; dr我正在尝试将初始状态保存在子容器组件中,但每次Redux存储更新时它都会更新为新值。我可能在配置中遗漏了一些东西,我需要帮助来解决问题。

index.tsx

const store = createStore(reducers, loadedState, enhancer);
ReactDOM.render(
    <Provider store={store}>
      <App />
    </Provider>,
    document.getElementById(containerId)
)

AppProps.ts

function mapStateToProps(state: StoreState){
  return{
    ... // app props
    userDetails: state.userDetails // array of objects fetched by id
  }
}

function mapDispatchToProps(dispatch: ReactRedux.Dispatch<actions.AppActions>){
  return{
    ... // app methods
    detailsUpdate: (props: UpdateProps) => (dispatch(actions.detailsUpdate(props: UpdateProps)))
  }
}
ReactRedux.connect(mapStateToProps, mapDispatchToProps)(App)

Actions.ts

function detailsUpdate(props: UpdateProps): UpdateUserDetails {
    return {
        type: UPDATE_USER_DETAILS,
        props: { ... }
    }
}

Reducers.ts

export function reducers(state: StoreState, action: actions.AppActions): StoreState {    
    let newState: StoreState =  {...state};
    switch (action.type) {
        case actions.UPDATE_USER_DETAILS:
        ... // reducer code
        break;
        case actions.UPDATE_PRODUCTS:
        ... // reducer code
        break;
    return newState;
}

App.tsx

const App = (allProps: IAppProps, state: StoreState) => {
  <UserDetailsContainer
    id="generalDetails"
    userDetails={allProps.userDetails.byId}
    detailsUpdate={allProps.detailsUpdate}
  />
}

UserDetailsContainer.tsx 1

class UserDetailsContainer extends
React.Component<UserDetailsContainerProps, UserDetailsState> {    
    constructor(props: UserDetailsContainerProps) {
        super(props);      
        this.state = {
            userData: props.userDetails[props.id]
        }
    }

    render(){
       <input type="text"
        value={this.props.userDetails[this.props.id].address}
      />
    }
}

detailsUpdate触发UPDATE_USER_DETAILS操作和reducer更新以新值存储状态。现在,UserDetailsContainer从商店接收更新版本的userDetails,可以在<input type="text">元素中显示新值。

但是,this.state会更新为新值,我希望不应该这样,因为构造函数应该只调用一次(并且是)。这可以防止我在需要重置或其他时使用初始值。

请询问任何遗漏的信息和/或澄清,并忽略任何拼写错误,因为该应用程序可以正常工作。

1组件通常为<input type="text">呈现另一个表示组件,为简洁起见,我在此省略。

谢谢!

1 个答案:

答案 0 :(得分:1)

以下仅制作状态对象的浅表副本。

let newState: StoreState =  {...state};

所以,如果你指定

this.state = {
   userData: props.userDetails[props.id]
}

然后修改reducer中的数组,您还将修改组件的状态,因为它引用了同一个对象。 这也违背了redux的概念 - reducer不应该改变它的论点。

请注意,redux文档中突出显示了这个确切的错误:https://redux.js.org/recipes/structuring-reducers/immutable-update-patterns#common-mistake-2-only-making-a-shallow-copy-of-one-level