本机基本列表项单击事件无效

时间:2017-07-10 14:58:35

标签: javascript react-native react-native-android native-base

我已经开始学习2天前的原生反应。我正在使用Native Base UI框架中的列表项组件。

根据他们在ListItem上捕获点击事件的文档和示例,您需要向ListItem添加onPressbutton选项。但就我而言,它不起作用。

我还有另一个跟踪点击事件的元素,它工作正常,但是列表元素没有捕获点击事件。

奇怪的是,如果我触发警报,它就会起作用

<List button onPress={() => { Alert.alert('Item got clicked!') } }>

下面是我的完整代码

  import React from 'react';
  import { 
    Content, 
    List, 
    ListItem, 
    Body, 
    Thumbnail, 
    Text, 
    Badge, 
    View 
  } from 'native-base';
  import { ActivityIndicator, TouchableHighlight, TouchableOpacity, Alert } from 'react-native';

  export default class Questions extends React.Component{

    constructor(props){
      super(props);
      this.handleClick = this.handleClick.bind(this);
    }

    handleClick(){
      Alert.alert("I am clicked");
      // Call method from parent
      this.props.onPress();
    }

    render() {
        var items = this.props.items;

        return (
          <Content>
            <List button onPress={() => { this.handleClick } }>
                {Object.keys(items).map(function(eachQuestion) {
                  return (
                    <ListItem avatar key={items[eachQuestion].id} button onPress={() => { this.handleClick } } >
                      <Body>
                        <Text>{items[eachQuestion].question}</Text>
                      </Body>
                    </ListItem>
                  )
                })}  
            </List>

            <TouchableOpacity onPress={this.handleClick}> 
                <View><Text>Click me</Text></View> 
            </TouchableOpacity>          
          </Content>  
        ); 

   }
  } 

修改1

    render() {
        var questions = {
          "1" : "James", 
          "2" : "Smith", 
          "3" : "Doe", 
          "4" : "Smith"
        };

        return (
          <Container>
            <Content>
              <List>
                {Object.keys(questions).map(function(key) {
                  return (<ListItem button={true} onPress={this.handleClick}>
                            <Text>{questions[key]}</Text>
                          </ListItem>
                  )        
                })}
              </List>
            </Content>
          </Container>        
        ); 
    }

**最终解决方案**

handleClick(){
  Alert.alert("I got clicked");
}

render() {
  var questions = this.props.questions;

  return (
    <Content>
      <List>
          {Object.keys(questions).map((eachQuestion) => { 
            return (
                <ListItem key={questions[eachQuestion].id} button={true} onPress={this.handleClick} >
                  <Body>
                    <Text>{questions[eachQuestion].question}</Text>
                  </Body>
                </ListItem>
            )
          })}  
      </List>
    </Content>  
  ); 

}

1 个答案:

答案 0 :(得分:3)

两个错误:

  1. 你应该刷新你的E​​S6 arrow function expressions。你没有调用你的$ awk 'NR==FNR{a[$1];next} ($1) in a' file_1.txt file_2.txt 函数,这就是为什么没有发生任何事情,而你的handleClick例子确实有效(因为你实际上在做什么)。
  2. 您没有定义Alert道具的价值。文档说没有默认值,因此将其定义为buttontrue是一种很好的做法。
  3. 因此,要修复代码,您应该为false定义道具,如下所示:

    ListItem

    或者缩短它:

    button={true}
    onPress={() => { this.handleClick() }}
    

    我也不确定您为什么在button={true} onPress={this.handleClick} 组件上定义buttononPress道具,因为它是您List的{​​{1}}试图点击,而不是整个ListItem本身。但由于这不是问题的一部分,我不会解决这个问题。

    工作代码的完整示例:

    List