React-Native 之 Fetch

fetch('http://hk.mzooe.com/api.php?app=api&mod=Oauth&act=authorize',{

        method: 'POST', 

        headers: {

            'Accept': 'application/json',

        }, 

        body:formData

        })

        .then((response) => { 

            if (response.ok) { 

                return response.json(); 

            } 

        })

        .then((json) => { 

            console.log(json)

        })

        .catch((error) => { 

            console.error(error); 

        }); 

android路径      https://blog.csdn.net/qq_34753923/article/details/59491934

你可能感兴趣的:(React-Native 之 Fetch)