欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

请求之Fetch

程序员文章站 2022-04-15 18:37:51
...
  1. 交互用的
  2. ie不支持,主流浏览器都支持,针对不支持的,使用Fetch Polyfill
  3. 用到了Promise语法,本身也是异步的
  4. fetch是一个函数
  fetch(url, {
    method: 'get',
    headers: {
      'content-type': 'application/json;charset=utf-8'
    },
    body: '',
  }).then(res => { // 成没成
    res.json(() => { // 不需要自己做判断成或没成
      
    }).then((res) => { // 成功
      
    }).catch(() => { // 失败,一般是服务器error
      
    })
  })
  1. fetch参考文档
  2. 了解zlFetch
相关标签: fetch