20

我刚刚开始围绕 React Native 进行思考,并且正在使用 Redux 来管理我的 UI 组件stateNativeBase 库, react-native-router-flux正在处理视图之间的导航。

目前我正在构建一个从对象数组创建的基本列表guest。该列表存储在 Redux 存储中,我可以访问它并相应地显示。列表中的每个项目都与数组guest中的 a相关联guests。我想让列表中的每个项目都可以触摸,然后将相关guest对象作为属性传递给下一个视图以显示详细信息。

为此,我使用的onPress是与组件关联的标准函数的函数(请参阅此处ListItem的NativeBase 文档)。我还遵循了文档并在组件本身之外定义了导航操作,以便在按下时调用它而不是每次呈现时调用。react-native-router-fluxListItem

我的问题是我发现onPress={goToView2(guest)}每次ListItem渲染时都会调用该函数,而不是在ListItem按下时特别调用。

我确信它一定是我省略的一些简单的东西。有什么建议么?

View1.js - 显示初始列表的视图guests

import React, { Component } from 'react';
import { Container, Header, Title, Content, Footer, FooterTab, Button, Icon,
  Text, List, ListItem } from 'native-base';
import { connect } from 'react-redux';
import { Actions as NavigationActions } from 'react-native-router-flux';

class View1 extends Component {
  render() {

    // This is the function that runs every time a ListItem component is rendered. 
    // Why is this not only running on onPress?

    const goToView2 = (guest) => {
      NavigationActions.view2(guest);
      console.log('Navigation router run...');
    };

    return (
      <Container>
        <Header>
          <Title>Header</Title>
        </Header>


        <Content>
          <List
            dataArray={this.props.guests}
            renderRow={(guest) =>
              <ListItem button onPress={goToView2(guest)}>
                <Text>{guest.name}</Text>
                <Text note>{guest.email}</Text>
              </ListItem>
            }
          >
          </List>
        </Content>

        <Footer>
          <FooterTab>
            <Button transparent>
              <Icon name='ios-call' />
            </Button>
          </FooterTab>
        </Footer>
      </Container>
    );
  }
}

const mapStateToProps = state => {
  console.log('mapStateToProps state', state);
  return { guests: state.guests };
};

export default connect(mapStateToProps)(View1);

View2.js - 显示所选内容详细信息的guest视图View1.js

import React, { Component } from 'react';
import { Container, Header, Title, Content, Footer, FooterTab, Button, Icon,
  Text, List, ListItem } from 'native-base';

class View2 extends Component {
    render() {
        console.log('View2 props: ', this.props);

        return (
            <Container>
                <Header>
                    <Title>Header</Title>
                </Header>

                <Content>
                <Content>
                <List>
                    <ListItem>
                        <Text>{this.props.name}</Text>
                    </ListItem>
                </List>
            </Content>
                </Content>

                <Footer>
                    <FooterTab>
                        <Button transparent>
                            <Icon name='ios-call' />
                        </Button>
                    </FooterTab>
                </Footer>
            </Container>
        );
    }
}

export default View2;
4

2 回答 2

50

试着做<ListItem button onPress={() => {goToView2(guest)}}

于 2016-10-27T02:31:27.787 回答
2
const goToView2 = (guest) => {
      NavigationActions.view2(guest);
      console.log('Navigation router run...');
    };

<ListItem button onPress={this.goToView2(guest)}>

如果您在函数中使用箭头函数,那么它只是 this.goToView2(guest) ...在渲染方法中编写箭头函数会导致性能问题...即使它可以忽略不计,最好避免它

于 2017-11-16T12:03:26.890 回答