反应本地-onPress获取平面列表的详细信息

时间:2018-11-01 06:19:44

标签: javascript reactjs react-native react-native-flatlist

我正在使用react native elements中的react native Flatlist。 我想做的是,当我单击每一行时,我想导航到一个新屏幕并获取详细信息。 enter image description here

例如,如果我单击AmyFarha,我想在新屏幕中访问她的emailphoneNumber

下面是代码。我添加了电子邮件和phoneNumber字段。

import { List, ListItem } from 'react-native-elements'

const list = [
  {
    name: 'Amy Farha',
    avatar_url: 'https://s3.amazonaws.com/uifaces/faces/twitter/ladylexy/128.jpg',
    subtitle: 'Vice President',
    email: 'amy@amy.com',
    phoneNumber: '1-808-9999'
  },
  {
    name: 'Chris Jackson',
    avatar_url: 'https://s3.amazonaws.com/uifaces/faces/twitter/adhamdannaway/128.jpg',
    subtitle: 'Vice Chairman',
    email: 'chris@chris.com',
    phoneNumber: '1-808-8888'
  },
  ... // more items
]

<List containerStyle={{marginBottom: 20}}>
  {
    list.map((l) => (
      <ListItem
        roundAvatar
        avatar={{uri:l.avatar_url}}
        key={l.name}
        title={l.name}
      />
    ))
  }
</List>

3 个答案:

答案 0 :(得分:0)

您应该使用类似这样的内容:

 <View>
              <FlatList
                  data={list}
                  keyExtractor={this._keyExtractor}
                  renderItem={({ item }) => (
                      <CustomItemComponent item={item} onPress={this.props.onItemPress}/>
                  )}
                  numColumns={2}
                  />
</View>

您可以创建一个新的组件CustomItemComponent,并将item作为道具。在这个新组件中,您可以使用nametitle或任何其他属性。

答案 1 :(得分:0)

在组件列表项中,使用展开显示用户详细信息,如下所示:

handleExpand = () => {
    this.setState({expand: !this.state.expand})
}

<TouchableOpacity onPress={this.handleExpand}>
   {this.state.expand ? (<ViewExpand/>) : (<ViewNormal/>)}
</TouchableOpacity>

答案 2 :(得分:0)

handleTouchItem = (item) => {
    this.props.navigation.navigate("forward page do you want", item);
}
 <ListItem
        onPress={() => this.handleTouchItem(item)}
        roundAvatar
        avatar={{uri:l.avatar_url}}
        key={l.name}
        title={l.name}
      />