React Native - 将父母的状态传递给孩子的麻烦

Posted

技术标签:

【中文标题】React Native - 将父母的状态传递给孩子的麻烦【英文标题】:React Native - Trouble passing parent's state to child 【发布时间】:2018-08-04 19:53:48 【问题描述】:

一个 React 新手在从父组件(本例中为 App)传递状态和函数以及从子组件(本例中为 Main)访问时遇到一些问题。我确定这是一两个非常简单的错误,我在哪里被绊倒了?

这是项目结构:

App
 |__ Rootstack
       |
       |__Favorites
       |__Main

这是精简后的代码:

class Main extends React.Component 
  render() 
      return (
      <View>
         <Text>this.props.favoritesList.length</Text>
         <Card>
              onSwiped=() => this.props.updateArray //the idea being that on a swipe, updateArray would add 1 to the 'favoriteList' in the parents state, and the favoritesList.length would update by +1.
         </Card>
      </View>
        );
    


class Favorites extends React.Component 
          ....
    

const RootStack = StackNavigator(
  
    Main: 
      screen: Main,
    Favorites: 
      screen: Favorites
  ,
  
    initialRouteName: 'Main'
  
);


export default class App extends Component<> 
  constructor(props) 
      super(props);
      this.state = 
        favoritesList: []
      ;
    this.updateArr = this.updateArr.bind(this); //don't know if this is necessary?
    

  updateArr=()=>this.setState( favoritesList: 
      [...this.state.favoritesList, 'new value']);

  render() 
      return <RootStack ...this.state updateArray=this.updateArr/>;
    
  

我得到的错误是——有什么想法吗?提前致谢!

【问题讨论】:

您正在尝试通过导航器发送道具并通过您的组件访问它。你不能通过这种方式通过导航器发送道具。看看this,它可能会对你有所帮助。 首先不需要绑定箭头函数,其次您将道具传递给无状态组件,并且导航器也无法直接接收道具。 【参考方案1】:

1-

这是不对的

       <Card  ... props should be here!!---  >
          onSwiped=() => this.props.updateArray //the idea being that on a swipe, updateArray would add 1 to the 'favoriteList' in the parents state, and the favoritesList.length would update by +1.
     </Card>

正确答案是:

     <Card  
       onSwiped=() => this.props.updateArray //the idea being that on a swipe, updateArray would add 1 to the 'favoriteList' in the parents state, and the favoritesList.length would update by +1.
      >
    </Card>

错误的意思是Card的孩子应该是一个对象而不是.....

2-

this.updateArr = this.updateArr.bind(this); 不是必需的,因为updateArr = () =&gt; ... 是用 es6 编写的

【讨论】:

以上是关于React Native - 将父母的状态传递给孩子的麻烦的主要内容,如果未能解决你的问题,请参考以下文章

Array.map 中的 React 功能组件在将函数作为道具传递时总是重新渲染

React,如何从父母那里访问孩子的状态?无需更新父母的状态

React-Native '不能将没有 YogaNode 的孩子添加到没有测量功能的父母!

问题:为什么在我为孩子设置状态时,React为什么更新我的父母?仅发生在数组

React Native 将 Component/Object 属性传递给 OnPress 函数

反应孩子正在通过道具改变父母状态......我不清楚原因