在获取本机反应后如何进行条件渲染?
1.使用responseData
成功获取
2.网络请求失败
3.如果从服务器返回的空responseData
现在我只显示成功的结果。我也要显示失败的情况。如何在提取失败后呈现Text
组件。以下是我的代码
onPressSubmit() {
fetch("xxxx", {
method: "POST",
headers: {
Accept: "application/json",
"Content-Type": "application/json"
},
body: JSON.stringify({
url: this.state.url
})
})
.then((response) => response.json())
.then((responseData) =>
{
this.setState({
res:responseData.message,
showLoading: false
}, () => console.log(this.state.res));
}).catch((error) => {
console.error(error);
});
}
renderArticle(){
const {title} = this.state.res;
const {image} = this.state.res;
const {text} = this.state.res;
const {id} = this.state.res;
const {author} =this.state.res;
const {html} = this.state.res;
return (
<TouchableOpacity
onPress={() => Actions.addNewarticle({heading:title, authorname:author, description:text, htmlcon:html})}
>
<CardSection>
<View style={{ flexDirection: "row" }}>
<Image
source={{ uri:image }}
style={styles.thumbnail_style}
/>
<Text style={styles.textStyle}>{title}</Text>
</View>
</CardSection>
</TouchableOpacity>
);
}
render(){
return(
<View>
{this.renderArticle()}
</View>
);
}
答案 0 :(得分:2)
创建renderNetworkFailure
方法,您可以在其中显示所需的任何内容。放入render
方法中。检查您的响应数据是否可用?我检查了空白字符串。
render(){
const isResponseData = (this.state.res == '') ? this.renderNetworkFailure() : this.renderArticle()
return(
<View>
{isResponseData}
</View>
);
答案 1 :(得分:0)
我更准确地认为这是您的答案的样子,如果您还想显示网络故障,则还必须为其保留状态变量。(我也是react-native的初学者,请正确如果有什么问题
render(){
return(
<View>
{(this.state.err)?this.networkFailure():({this.state.res.length? this.renderArticle():this.renderNothing()})}
</View>
)
}