reactjs - 在组件更新 redux 存储中 React Native setState

标签 reactjs react-native redux react-redux

我在多个 Web 应用程序中使用了 redux 和 React。目前我正在使用 Redux 开发我的第一个 React Native 应用程序。

我遇到了一个很奇怪的问题。

我创建了一个商店并将其传递给 Provider 组件,该组件将 App 组件呈现为子组件。 (react-redux的基本用法)

在应用程序中我有一个连接的组件。它在调用 navigator.push(route) 时将从存储接收到的数据传递到 Navigator Route。该路径上的组件不是连接组件。它接收 Prop 并将 Prop 存储在其状态中。 Prop 不仅仅是文字,而是对象/数组。 根据用户交互,该组件通过setState更新其状态。 此操作是直接更新商店

我是否不应该在通过 matchStateToProps 从商店接收的组件状态上设置 Prop ?尽管情况确实如此,但 setState 发生在不同的组件中。商店不应该简单地 self 更新。

我很困惑。请帮忙。

(如果问题不清楚或令人困惑,我将从我的代码中添加相关代码片段)

编辑1:

Here is a fiddle which conveys my problem

    const intialState = {
    0: {
    orgId: 0,
    peopleInfo: {
      0 : {
        pID: 0,
        name: 'parent',
        children: [
          {
            userID: 1,
            name: 'abc',
          },
          {
            userID: 2,
            name: 'xyz',
          },
        ]
      }
    }
  }
}


function reducer (currentState, action) {
    currentState = intialState;
  console.log(currentState[0].peopleInfo[0]); // priniting the store every time an action is dispatched
  // NO CHANGES TO THE STORE WHEN ACTION IS DISPATCHED
    return currentState;
}


// Create Store
var store = Redux.createStore(reducer);

// action creator which will simply trigger the reducer
function save(){
    return {
    type: 'SAVE'
  }
}

// Presentational Components (No state, only props and render)
var OrgsContainer = React.createClass({
    render() {
    return (
        <div>
        <div>
          <div>1. Open console first</div>
          <div>2. Change parent name - no change in the name property for the record on the store </div>
          <div>3. Change any child - it changes the property on the store even if there is no implementation in the reducer</div>
        <br />
        </div>
        <PeopleContainer people ={this.props.peopleInfo} saveAction = {this.props.save} />
        </div>
    )
  }
})

var PeopleContainer = React.createClass({
  componentWillMount(){
  console.log(this.props)
    this.setState({
      currentChildren: this.props.people[0].children,
      parentName: this.props.people[0].name
    })
  },
  onChildChangeName(event,index){
  console.log(event.target.value,index);

    var newChildrenArray = this.state.currentChildren;
    newChildrenArray[index].name = event.target.value
    this.setState({
      currentChildren: newChildrenArray
    })
    this.props.saveAction();
  },
  onParentChangeName(event){

    this.setState({
        parentName: event.target.value,
    })
    this.props.saveAction()
  },
  render(){
    return (
      <div>
        Parent Name : <input value={this.state.parentName} onChange={(event) => this.onParentChangeName(event)} />
         <div><br /></div> 
        {this.state.currentChildren.map((child, index) => {
         return(<div key={index}>
         Name : <input value={child.name} onChange={(event) => this.onChildChangeName(event,index)} /> <div><br /></div> 
         </div>)
        })}
      </div>
    )
  }

})

// Map state and dispatch to props
function mapStateToProps (state) {
    return {
    peopleInfo: state[0].peopleInfo,
    };
}

function mapDispatchToProps (dispatch) {
    return Redux.bindActionCreators({
    save: save,
  }, dispatch);
 }

 // Container components (Pass props into presentational component)
 var OrgsContainer = ReactRedux.connect(mapStateToProps, mapDispatchToProps)(OrgsContainer);


 // Top-Level Component
 var App = React.createClass({
    render: function () {
    return (
        <div>
        <h3>App</h3>
        <OrgsContainer />
      </div>
     );
  }
 });



// Render to DOM
var Provider = ReactRedux.Provider; // Injects store into context of all descendents
ReactDOM.render(
    <Provider store={store}>
    <App />
  </Provider>,
  document.getElementById('container')
);

所以它与React Native无关。

reducer 的结构模仿了我在应用程序中的数据模型。

从 fiddle 中可以看出,很明显我们不能将传递的 Prop 设置为状态并在那里更改。很明显,存在由于对象引用而形成的到商店的链接。更新此类引用最终会更新商店。

虽然不将 props 设置为状态是一个很好的做法,但我的场景需要这样做。现在我已经使用 Object.assign() 来创建一个新对象并在状态上使用该对象,这对我有用。

我可能错过了 redux 文档中有关此内容的一些内容。如果有人碰巧发现了什么,我会很高兴知道。

但我还是觉得这很奇怪。

最佳答案

最终,问题的原因是,在您的 onChildChangeName 方法中:

var newChildrenArray = this.state.currentChildren;
newChildrenArray[index].name = event.target.value

您正在改变您的商店也引用的相同底层对象实例。

您可以通过将此行添加到 onChildChangeName 来确认这一点:

console.log(intialState[0].peopleInfo[0].children === newChildrenArray); // true
<小时/>

解决方案 1: 最简单的解决方案是,您可以在首次设置状态时对数据创建深层复制,例如:

this.setState({
  currentChildren: _.cloneDeep(this.props.people[0].children),
  parentName: this.props.people[0].name
})

由于这会在数组上创建深拷贝,因此数组和数组中的项目都不会引用与 initialState (您的商店)相同的数据,因此您现在可以安全地更改数组/对象,无需担心副作用。

<小时/>

解决方案 2: 另一种选择是首先创建数组的浅拷贝,然后确保在需要修改数组中的项目时创建新的对象实例。例如,首次调用 setState 时,通过执行 slice() 创建一个新数组,以确保引用的实例中不会发生对组件数组的更改通过initialState,例如:

this.setState({
  currentChildren: this.props.people[0].children.slice(),
  parentName: this.props.people[0].name
})

然后在 onChildChangeName 中,您始终创建一个新实例,而不是改变现有实例,例如:

var newChildrenArray = this.state.currentChildren;
newChildrenArray[index] = {...newChildrenArray[index], name: event.target.value}

虽然 React/Redux 在您构建组件时传递各种数据实例,但它们不会执行任何类型的克隆/复制操作来确保您使用新的引用,因此您必须自己执行这些操作避免这些问题。

关于reactjs - 在组件更新 redux 存储中 React Native setState,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41311771/

相关文章:

reactjs - createAsyncThunk 并使用 redux-toolkit 编写 reducer 登录

ios - react 原生中的自定义字体

javascript - React Native - 推送到数组后渲染

facebook - 在 native 应用程序中嵌入 facebook 视频

javascript - 如何创建一个以 Node 服务器作为后端的react-redux应用程序?

javascript - 为什么使用当前状态作为参数时this.state中的()

reactjs - 尝试使用 React-Spring 制作动画时出现错误 "TypeError: rangeValue.replace is not a function"

reactjs - 如何在useEffect hook中正确实现一个props回调函数

javascript - 从功能组件传递 Prop ?

javascript - Bootstrap cdn 覆盖了我在 react js 中的自定义 css 样式