美文网首页
fetch api的简单使用

fetch api的简单使用

作者: 苍老师的眼泪 | 来源:发表于2022-04-09 21:43 被阅读0次

fetch会返回一个promise,仅当网络故障时或请求被阻止时,该promise才会标记为 reject,
当该promise 进入 resolve 状态是,我们resolve的参数名设置为response,这个response有 json 和 text 方法,
分别对应处理json 和普通字符串,这两个方法都返回一个将response处理成json或字符串的 promise,当该promise
resolve之后,才得到最终的结果result.

      fetch('http://localhost/api/index1').then(response => {
        return response.json()
      }).then(result => {
        console.log(result)
      })

相关文章

  • Fetch

    Fetch API使用 Fetch

  • fetch api的简单使用

    fetch会返回一个promise,仅当网络故障时或请求被阻止时,该promise才会标记为 reject,当该p...

  • 聊聊fetch

    聊聊fetch fetch的使用 fetch是一个发起异步请求的新api, 在浏览器(有些不支持)中可以直接使用。...

  • Progressive Web Apps(PWA)核心技术-Fe

    简单来说Fetch API就是一个请求资源的接口,比XMLHttpRequest更简单。Fetch支持跨源资源共享...

  • JS异步处理系列二 XHR Fetch

    参考AJAX 之 XHR, jQuery, Fetch 的对比使用更优雅的异步请求API——fetch 一、原生 ...

  • react数据请求

    fetch API fetch是基于Promise设计,所以不支持Promise的浏览器建议使用cross_fet...

  • XMLHttpRequest总结

    原文链接:你真的会使用XMLHttpRequest吗?这个API很“迷人”——(新的Fetch API)Servi...

  • 前端 | 一些实用的npm库

    dependencies 1. whatwg-fetch 有些浏览器不支持fetch API,可以使用这个poly...

  • 如何使用Fetch API

    传统的Request jQuery ajax 传统的XMLHttpRequest请求闲的非常的杂乱,而优雅的aja...

  • fetch用法

    Fetch API Fetch API提供了一个fetch()方法,它被定义在BOM的window对象中,你可以用...

网友评论

      本文标题:fetch api的简单使用

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