如何在以下JSON文件中获取消息节点?
{
"status": [
{
"message": "success"
}
]
}
在应用程序中获取
then((response) => response.json())
.then((responseJson) => {
this.setState({
statusResponse: responseJson.status
})
})
this.state.statusResponse ....?