我正在尝试在listview
的任何项目上进行onPress
时打开另一个屏幕。
<TouchableHighlight underlayColor={AppColors.black}
onPress={Actions.SubCategoryList(item.guid)}>
<View>
<Item style={{flexDirection: 'row', height: 50, borderBottomWidth: borderWidth}}>
<Text style={{
fontFamily: AppStyles.fontFamily,
fontSize: 17,
flex: 5,
color: AppColors.black
}}>{item.category_name}</Text>
<Item style={{flex: 1, borderBottomWidth: 0, flexDirection: 'row', justifyContent: 'flex-end'}}>
<Text style={{
color: AppColors.grey,
fontFamily: AppStyles.fontFamily,
fontSize: 17,
marginRight: 15
}}>{item.active_tournaments}</Text>
<Image resizeMode="contain" source={require('../../assets/images/right.png')}
style={{width: 15, height: 15, marginTop: 3}}/>
</Item>
</Item>
</View>
</TouchableHighlight>
但是,每当我在当前屏幕上来到当前屏幕上时,它直接在子类别屏幕上直接进入。
。我想知道如何捕获另一个屏幕上当前屏幕发送的数据。
问题是您实际上是立即调用onPress
,而不是将其设置为回调。您可以在以下代码中看到这一点:
onPress={Actions.SubCategoryList(item.guid)}
您有两个解决此问题的选项。您的第一个选项是在其中添加函数调用,例如:
onPress={() => Actions.SubCategoryList(item.guid)}
您的第二个选项是更改Actions.SubCategoryList
功能以返回这样的回调:
export function SubCategoryList(guid){
return () => { // this gets called by onPress
/* contents of function go here */
}
}
理想情况下,您还可以保留基于GUID创建的回调的缓存,并返回缓存的副本,而不是创建新的回调。这称为回忆,看起来像这样:
let cache = {};
export function SubCategoryList(guid){
return cache[guid] || (cache[guid] = () => {
/* contents of function go here */
})
}
我尝试使用单击"日志"时使用列表视图,请参阅示例代码
constructor() {
super();
const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
this.state = {
dataSource: ds.cloneWithRows(['row 1', 'row 2']),
};
}
<View>
<ListView
dataSource={this.state.dataSource}
renderRow={(rowData) =>
<TouchableHighlight onPress={()=>{console.log("clicked-- data-->>",rowData)}}>
<Text>{rowData}</Text>
</TouchableHighlight>}
/>
</View>
您可以轻松地使用stacknavigator,允许您在屏幕上导航,传递参数,即:列表项目,您可以这样使用STH:
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Welcome',
};
render() {
const { navigate } = this.props.navigation;
return (
<Button
title="Go to Jane's profile"
onPress={() =>
navigate('Profile', { name: 'Jane' }) // Sth. you want to pass to next view/screen
}
/>
);
}
}
然后在所需的屏幕中您可以从道具中获得所需的物品:ex。
initialRoute={{
component: MyScene,
title: 'My Initial Scene',
passProps: {myProp: 'foo'},
}}
另一个很好的参考:反应导航Comdementor