我刚刚开始围绕 React Native 进行思考,并且正在使用 Redux 来管理我的 UI 组件state
的NativeBase 库, react-native-router-flux正在处理视图之间的导航。
目前我正在构建一个从对象数组创建的基本列表guest
。该列表存储在 Redux 存储中,我可以访问它并相应地显示。列表中的每个项目都与数组guest
中的 a相关联guests
。我想让列表中的每个项目都可以触摸,然后将相关guest
对象作为属性传递给下一个视图以显示详细信息。
为此,我使用的onPress
是与组件关联的标准函数的函数(请参阅此处ListItem
的NativeBase 文档)。我还遵循了文档并在组件本身之外定义了导航操作,以便在按下时调用它而不是每次呈现时调用。react-native-router-flux
ListItem
我的问题是我发现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;