我已经开始学习2天前的原生反应。我正在使用Native Base UI框架中的列表项组件。
根据他们在ListItem
上捕获点击事件的文档和示例,您需要向ListItem添加onPress
和button
选项。但就我而言,它不起作用。
我还有另一个跟踪点击事件的元素,它工作正常,但是列表元素没有捕获点击事件。
奇怪的是,如果我触发警报,它就会起作用
<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>
);
}
答案 0 :(得分:3)
两个错误:
$ awk 'NR==FNR{a[$1];next} ($1) in a' file_1.txt file_2.txt
函数,这就是为什么没有发生任何事情,而你的handleClick
例子确实有效(因为你实际上在做什么)。Alert
道具的价值。文档说没有默认值,因此将其定义为button
或true
是一种很好的做法。因此,要修复代码,您应该为false
定义道具,如下所示:
ListItem
或者缩短它:
button={true}
onPress={() => { this.handleClick() }}
我也不确定您为什么在button={true}
onPress={this.handleClick}
组件上定义button
和onPress
道具,因为它是您List
的{{1}}试图点击,而不是整个ListItem
本身。但由于这不是问题的一部分,我不会解决这个问题。
工作代码的完整示例:
List