前端使用fetch请求数据

Posted -王二毛-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端使用fetch请求数据相关的知识,希望对你有一定的参考价值。

使用fetch请求数据

created()
    fetch("http://localhost:8181/user/page?pageNum=1&pageSize=5").then(res=>res.json()).then(res=>
      console.log(res);
      this.tableData=res.data;
      this.total=res.total;
    )
  ,

以上是关于前端使用fetch请求数据的主要内容,如果未能解决你的问题,请参考以下文章

fetch请求数据

前端进阶使用fetch/axios时, 如何取消http请求

express后端和fetch前端的json数据传递

Vue数据请求 axios vs fetch

防止使用 fetch 发送多个 http 请求

前端随心记---------Axios/fetch/ajax的区别