如何在具有超过 1 个条件的本机反应中进行条件渲染?
以下是我的代码的一部分
指数
.then(response => response.json())
.then((responseData) => {
this.setState({
progressData:responseData,
});
.....
......
render() {
const { progressData }= this.state;
return(
<View style={{flex:1}}>
<HeaderExample />
<View>
{progressData == "1"}
(<View>
<Text style={{fontSize:28,color:"#8470ff",fontWeight: 'bold',paddingTop:20,alignSelf:'center'}}>Pending</Text>
</View>)}
{ progressData == "2" &&
(<View>
<CardSection>
<Text style={{fontSize:28,color:"#8470ff",fontWeight: 'bold',paddingTop:20,alignSelf:'center'}}>InProgress </Text>
<View style={styles.buttonContainer}>
<Button
title="Report"
color="#8470ff"
onPress={() =>onPressReport()}
/>
</View>)}
但这里是针对单一情况的意思是如果responseData
只包含一个字段。但现在 reponseData 包含 2 个数组。每个有 3 个对象。那么如何在这里检查条件渲染呢?我的 responseData 看起来像这样。我想在每种情况下填充一些 UI。这意味着if status = 1 && work_type ="plumber"
然后渲染一些 UI。if status = 2 && work_type="electrical" && assigend_to="worker_45"
然后再渲染一些ui 。那么我该怎么做呢?
请帮忙