我想显示带有来自JSON文件的新闻的卡片。获取 JSON 工作正常,但我想添加一个 onPress 事件,以便我可以单击卡片并导航到文章。
我的卡片视图:
<Card>
<CardItem button onPress={this._OnButtonPress(news.id)}>
<Left>
<Body>
<Text style={styles.cardText}>{news.title}</Text>
</Body>
</Left>
</CardItem>
<CardItem>
<Left>
<Icon style={styles.icon} name="chatbubbles" />
<Text>{news.comments} comments</Text>
</Left>
<Right>
<Text>{news.published}</Text>
</Right>
</CardItem>
</Card>
我正在尝试将变量传递给 onButtonPress() 函数
_OnButtonPress(newsID) {
Alert.alert(newsID.toString());
}
为了测试 onPress 事件,我所做的只是提醒参数。
我没有看到任何错误,但我仍然收到此错误
有谁知道我如何解决这个问题以及我在这里做错了什么。提前谢谢。
更新
我更新的课程:
import React, { Component } from "react";
import {
Image,
ListView,
StyleSheet,
Text,
View,
Alert
} from 'react-native';
import {
Container,
Header,
Left,
Right,
Button,
Card,
CardItem,
Icon,
Body,
Content,
Logo
} from 'native-base';
import styles from "./styles";
const logo = require("../../../img/f1today.png");
var REQUEST_URL = 'http://v2.first-place.nl/test/news.json';
class News extends Component {
constructor(props) {
super(props);
this._OnButtonPress = this._OnButtonPress.bind(this);
this.state = {
dataSource: new ListView.DataSource({
rowHasChanged: (row1, row2) => row1 !== row2,
}),
loaded: false,
};
}
_OnButtonPress(newsID) {
Alert.alert(newsID.toString());
}
componentDidMount() {
this.fetchData();
}
fetchData() {
fetch(REQUEST_URL)
.then((response) => response.json())
.then((responseData) => {
this.setState({
dataSource: this.state.dataSource.cloneWithRows(responseData.articles),
loaded: true,
});
})
.done();
}
render() {
if (!this.state.loaded) {
return this.renderLoadingView();
}
return (
<Container style={styles.container}>
<Header
style={{ backgroundColor: "#fff" }}
androidStatusBarColor="#f05423"
iosBarStyle="light-content">
<Left>
<Button
transparent
onPress={() => this.props.navigation.navigate("DrawerOpen")}
>
<Icon name="ios-menu" style={{color: 'black'}} />
</Button>
</Left>
<Body>
<Image source={logo} style={styles.headerLogo} />
</Body>
<Right />
</Header>
<Content padder>
<ListView
dataSource={this.state.dataSource}
renderRow={this.renderNews}
style={styles.listView}
/>
</Content>
</Container>
);
}
renderLoadingView() {
return (
<View style={styles.loading}>
<Text>
Loading news...
</Text>
</View>
);
}
renderNews(news) {
return (
<Card>
<CardItem button onPress={()=> this._OnButtonPress(news.id)}>
<Left>
<Body>
<Text style={styles.cardText}>{news.title}</Text>
</Body>
</Left>
</CardItem>
<CardItem>
<Left>
<Icon style={styles.icon} name="chatbubbles" />
<Text>{news.comments} comments</Text>
</Left>
<Right>
<Text>{news.published}</Text>
</Right>
</CardItem>
</Card>
);
}
}
export default News;
您应该用可触摸不透明度或任何其他可触摸物品包装您的卡片物品。并为该可触摸项目提供 onPress 功能。
<TouchableOpacity onPress={() => //your function}
<CardItem>
</CardItem>
</TouchableOpacity>
注意:请确保使用与react-native
包关联的<TouchableOpacity>
组件,而不是react-native-gesture-handler
包。Visual Studio 代码编辑器可能会从react-native-gesture-handler
自动导入,这在此特定用例中不起作用。
正确的包装:
import { TouchableOpacity } from 'react-native';
包装不正确:
import { TouchableOpacity } from 'react-native-gesture-handler';
,当我添加它时,我关闭了按钮={true}道具。请参阅下面的示例。
<CardItem
button={true}
onPress={() => {this.cardSelected(item.name)}}
style={{paddingTop:0,paddingBottom:0,paddingLeft:0,paddingRight:0}}>
<Image source={item.img} style={{flex:1,resizeMode: 'cover',height: 175}} />
<Text style={styles.cardheading}>{item.name}</Text>
<Image source={cardline} style={styles.cardline}/>
<Text style={styles.cardtext}> {item.text}</Text>
</CardItem>
您遇到的问题是该方法无法访问视图的范围。现在,您已经以这种方式定义了 renderNews 方法:
renderNews(news) { }
如果您以这种方式声明您的方法,您将无法在您的方法上使用此方法,并且由于"this"是未定义的,所有方法都将触发错误,因为您正在尝试访问"undefined.methodName()"。话虽如此,您应该将上下文"绑定"到以这种方式声明它的方法:
renderNews = (news) => { }
现在,您已将上下文附加到该方法,并且可以在内部访问"this"。
你需要绑定这个函数。在构造函数中编写以下代码:
this._OnButtonPress = this._OnButtonPress.bind(this);
另外,更改了按如下方式:
onPress={()=> this._OnButtonPress(news.title)}
最后,我可以看到 onPress 已写入组件。相反,您应该在该容器中定义/写入它。