美文网首页
React-Native 之 Fetch

React-Native 之 Fetch

作者: 唯有她美 | 来源:发表于2019-02-19 20:09 被阅读0次

    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

          本文链接:https://www.haomeiwen.com/subject/ahncpftx.html