首页 前端知识 TypeScript使用Fetch请求接口

TypeScript使用Fetch请求接口

2024-05-24 08:05:15 前端知识 前端哥 506 593 我要收藏

Fetch API是XMLHttpRequest的升级版,浏览器原生提供,用于发送HTTP请求,属于HTML5新增的API。

参数说明:

// async
const response = await fetch(url, {
  method: "GET", // http请求方法,GET/POST/DELETE/PUT等
  headers: { // 请求头配置
    "Content-Type": "text/plain;charset=UTF-8"
  },
  body: undefined, // 请求数据体
  referrer: "about:client", // 请求来源标识
  referrerPolicy: "no-referrer-when-downgrade", // 指定referrer的规则
  mode: "cors", // 指定请求的模式,默认cors,支持same-origin、no-cors
  credentials: "same-origin", // 指定是否发送Cookie,默认same-origin,支持include、omit
  cache: "default", // 指定如何处理缓存,默认default,支持no-store、reload、no-cache、force-cache、only-if-cached
  redirect: "follow", // 指定HTTP跳转的处理方式,默认follow,支持error、manual
  integrity: "", // 指定一个哈希值,用于检查HTTP响应的是否为这个预设的哈希值
  keepalive: false, // 页面卸载时,是否通知后台保持连接
  signal: undefined, // 指定AbortSignal实例,用于取消fetch请求
})

GET请求:

// GET
fetch('http://example.com/userInfo?uid=1')
  .then((response) => {
    return response.json();
  })
  .then((e) => {
    console.log(e);
  });

// 或者
const response = await fetch("http://example.com/userInfo?uid=1");
console.log(await response.json());

POST请求:

// POST
fetch(url, {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json;charset=utf-8'
  },
  body: JSON.stringify(jsonData)
})
  .then(response => {
    return response.json()
  })
  .then(e => {
    console.log(e)
  })
  .catch(err => {
    console.error(err)
  })

响应处理:

1、通过Response对象的状态码判断状态:

const res = await fetch(url)
if (res.status >= 200 && res.status < 300) {
  return await res.text()
}
else {
  return new Error(res.statusText)
}

2、通过Response对象的ok参数判断(对应状态码200-299)

// async
const res = await fetch(url)
if (res.ok) {
  return await res.text()
}
else {
  return new Error(res.statusText)
}

3、读取返回内容

// async
const res = awati fetch(url, {
  headers: {
    "Content-Type": "text/plain;charset=UTF-8"
  }
})
//text数据
if(res.headers.get("content-type") === 'text/plain') {
  return await res.text()
}
//json数据
if(res.headers.get("content-type") === 'application/json') {
  return await res.json()
}

转载请注明出处或者链接地址:https://www.qianduange.cn//article/9305.html
标签
评论
发布的文章

用JS生成本周日期代码

2024-04-18 17:04:15

js 递归函数

2024-05-31 10:05:46

jQuery是什么?如何使用?

2024-03-12 01:03:24

js延迟加载的六种方式

2024-05-30 10:05:51

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!