如何将值传递给React-Native-Router-Flux中的其他组件?

时间:2016-09-21 08:46:04

标签: react-native react-native-router-flux

我的代码是:

...
<Router>
 <Scene key="com1" component={Com1} initial/>
<Scene key="com2" component={Com2}/>
</Router>
...
com1.js
...
onPress={Actions.com2}

我将com1更改为com2

但我需要将Com1的输入框的值传递给Com2

我该怎么做?

5 个答案:

答案 0 :(得分:51)

您可以传递这样的数据:

  

Actions.com2({text:&#39; Hello World&#39;})

您可以像这样在com2中恢复数据:

  

this.props.text

您可以访问下一个教程以获取更多信息:

https://github.com/aksonov/react-native-router-flux/blob/master/docs/v3/MINI_TUTORIAL.md

答案 1 :(得分:6)

除此之外,(对于评论中表示不起作用的人),您可以在下面尝试。当你通过

Actions.com2({text : 'Hello World'});

Com2应该通过'道具'

const Com2 = (props) => {
   return ( <View ...
    {props.text}
   ... />
);

答案 2 :(得分:1)

通过输入传递数据

   import React, { Component } from 'react';
   import { Text, View, TextInput, TouchableOpacity } from 'react-native';
   import { Actions } from 'react-native-router-flux';

   export default class Com1 extends Component {
   state = { text: '' };
      render() {
       return (
          <View>
             <TextInput
                value={this.state.text}
                onChangeText={text => this.setState({ text })}
            />
    <TouchableOpacity onPress={this.onPressNext.bind(this)}>
   <Text>Get Data</Text>
    </TouchableOpacity>
    </View>
    );
}

onPressNext() {
    Actions.Com2({text: this.state.text });
}
}

在第二页获得价值

   export default class Com2 extends Component {

      render() {
         return (
        <View>
         <Text>
          {this.props.text}
         </Text>
       </View>
    );
  }
 }

您可以参考以下链接: https://react-native-solutions.blogspot.com/2018/07/passing-data-between-screens-in-react.html

答案 3 :(得分:0)

使用如下推送方法:

Actions.push('your key name',{prop you want to pass})

它将场景推送到堆栈,执行到新场景的过渡。

答案 4 :(得分:0)

您可以将动作与道具一起使用

onPress={() => Actions.com2({title: 'some title'})}

然后在com2中,您可以像这样检索数据

this.props.title

或者您可以使用push属性

 Actions.push('com2',{title: 'some title' } );

然后也像这样在com2中检索它

this.props.title