如何使用axios代替react-native中的fetch?

时间:2019-07-08 13:53:49

标签: react-native-android

我使用访存将数据发送到Web服务。如何使用axios做到这一点?

 fetch('url', {
        method: 'POST',
        headers: new Headers({
                     'Accept': 'application/json',
                    'Content-Type': 'application/json', // <-- Specifying the Content-Type
            }),
             body: JSON.stringify(object)
        })

1 个答案:

答案 0 :(得分:1)

Here is some代码接近您想要的代码。

 axios({
    method: 'post',
    url: 'myurl',
    data: bodyFormData,
    config: { headers: {'Content-Type': 'application/json' }}
    })
    .then(function (response) {
        //handle success
        console.log(response);
    })
    .catch(function (response) {
        //handle error
        console.log(response);
    });

或者,您可以设置配置,然后使用axois.post()This axios作弊可能也对您有帮助。