访问JSON文件React Native

时间:2018-10-02 16:56:39

标签: arrays json react-native

如何在以下JSON文件中获取消息节点?

{
"status": [
    {
        "message": "success"
    }
]
}

在应用程序中获取

then((response) => response.json())
    .then((responseJson) => {
        this.setState({
            statusResponse: responseJson.status
        })
    })

this.state.statusResponse ....?

0 个答案:

没有答案