React第五天 (偷懒了一天)

React与后台数据交互

axios:

  axios.get('http://127.0.0.1:3000/api/goods.json')
        .then(res=>{
            console.log('res结果:',res);
        })
        .catch(error=>{
            console.log('数据请求出错')
        })

fetch:

   fetch('http://127.0.0.1:3000/api/goods222222222.json')
        .then(res=>{

           // console.log('fetch:',res)
           return res.json()
            
        })
        .then(result=>{
            console.log('真正的返回结果:',result)
        })
        .catch(()=>{
            console.log('数据报错,请检查')
        })

传统 Ajax 已死,Fetch 永生:
https://segmentfault.com/a/1190000003810652

fetch 文档
https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch

跨域:

react跨域可以通过在pachage.json中添加proxy来实现,在末尾添加一行

"proxy": "https://www.sojson.com/"

你可能感兴趣的:(React第五天 (偷懒了一天))