亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

fetch()函數如何使用

發布時間:2022-11-28 09:26:57 來源:億速云 閱讀:127 作者:iii 欄目:開發技術

今天小編給大家分享一下fetch()函數如何使用的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

Fetch() 是 window.fetch 的 JavaScript polyfill。

全局 fetch() 函數是 web 請求和處理響應的簡單方式,不使用 XMLHttpRequest。這個 polyfill 編寫的接近標準的 Fetch 規范。

fetch()是XMLHttpRequest的升級版,用于在JavaScript腳本里面發出 HTTP 請求。

fetch()的功能與 XMLHttpRequest 基本相同,但有三個主要的差異。

(1)fetch()使用 Promise,不使用回調函數,因此大大簡化了寫法,寫起來更簡潔。

(2)采用模塊化設計,API 分散在多個對象上(Response 對象、Request 對象、Headers 對象),更合理一些;相比之下,XMLHttpRequest 的 API 設計并不是很好,輸入、輸出、狀態都在同一個接口管理,容易寫出非常混亂的代碼

(3)fetch()通過數據流(Stream 對象)處理數據,可以分塊讀取,有利于提高網站性能表現,減少內存占用,對于請求大文件或者網速慢的場景相當有用。XMLHTTPRequest 對象不支持數據流,

所有的數據必須放在緩存里,不支持分塊讀取,必須等待全部拿到后,再一次性吐出來。在用法上接受一個 URL 字符串作為參數,默認向該網址發出 GET 請求,返回一個 Promise 對象

fetch()函數支持所有的 HTTP 方式:

獲取HTML類型數據

fetch('/users.html')
  .then(function(response) {
    return response.text()
  }).then(function(body) {
    document.body.innerHTML = body
  })

獲取JSON類型數據

fetch('/users.json')
  .then(function(response) {
    return response.json()
  }).then(function(json) {
    console.log('parsed json', json)
  }).catch(function(ex) {
    console.log('parsing failed', ex)
  })

一:fetch()語法說明

fetch(url, options).then(function(response) { 
  // handle HTTP response 
}, function(error) { 
  // handle network error 
})

具體參數案例:

require('babel-polyfill') 
require('es6-promise').polyfill() 
import 'whatwg-fetch' 
fetch(url, { 
  method: "POST", 
  body: JSON.stringify(data), 
  headers: { 
    "Content-Type": "application/json" 
  }, 
  credentials: "same-origin" 
}).then(function(response) { 
  response.status     //=> number 100–599 
  response.statusText //=> String 
  response.headers    //=> Headers 
  response.url        //=> String 
  response.text().then(function(responseText) { ... }) 
}, function(error) { 
  error.message //=> String 
})

1.url定義要獲取的資源。

這可能是:
• 一個 USVString 字符串,包含要獲取資源的 URL。
• 一個 Request 對象。
options(可選)
一個配置項對象,包括所有對請求的設置。可選的參數有:
• method: 請求使用的方法,如 GET、POST。
• headers: 請求的頭信息,形式為 Headers 對象或 ByteString。
• body: 請求的 body 信息:可能是一個 Blob、BufferSource、FormData、URLSearchParams 或者 USVString 對象。注意 GET 或 HEAD 方法的請求不能包含 body 信息。
• mode: 請求的模式,如 cors、 no-cors 或者 same-origin。
• credentials: 請求的 credentials,如 omit、same-origin 或者 include。
• cache: 請求的 cache 模式: default, no-store, reload, no-cache, force-cache, 或者 only-if-cached。
 

2.response一個 Promise,resolve 時回傳 Response 對象:

• 屬性:
o status (number) - HTTP請求結果參數,在100–599 范圍
o statusText (String) - 服務器返回的狀態報告
o ok (boolean) - 如果返回200表示請求成功則為true
o headers (Headers) - 返回頭部信息,下面詳細介紹
o url (String) - 請求的地址
• 方法:
o text() - 以string的形式生成請求text
o json() - 生成JSON.parse(responseText)的結果
o blob() - 生成一個Blob
o arrayBuffer() - 生成一個ArrayBuffer
o formData() - 生成格式化的數據,可用于其他的請求
• 其他方法:
o clone()
o Response.error()
o Response.redirect()
 

3.response.headers

• has(name) (boolean) - 判斷是否存在該信息頭
• get(name) (String) - 獲取信息頭的數據
• getAll(name) (Array) - 獲取所有頭部數據
• set(name, value) - 設置信息頭的參數
• append(name, value) - 添加header的內容
• delete(name) - 刪除header的信息
• forEach(function(value, name){ ... }, [thisContext]) - 循環讀取header的信息

二:具體使用案例

1.GET請求

• HTML數據:

    fetch('/users.html') 
      .then(function(response) { 
        return response.text() 
      }).then(function(body) { 
        document.body.innerHTML = body 
  })

• IMAGE數據

    var myImage = document.querySelector('img'); 
     
    fetch('flowers.jpg') 
      .then(function(response) { 
        return response.blob(); 
      }) 
      .then(function(myBlob) { 
        var objectURL = URL.createObjectURL(myBlob); 
        myImage.src = objectURL; 
  });

• JSON數據

    fetch(url) 
      .then(function(response) { 
        return response.json(); 
      }).then(function(data) { 
        console.log(data); 
      }).catch(function(e) { 
        console.log("Oops, error"); 
  });

使用 ES6 的 箭頭函數后:

fetch(url) 
  .then(response => response.json()) 
  .then(data => console.log(data)) 
  .catch(e => console.log("Oops, error", e))

response的數據

fetch('/users.json').then(function(response) { 
  console.log(response.headers.get('Content-Type')) 
  console.log(response.headers.get('Date')) 
  console.log(response.status) 
  console.log(response.statusText) 
})

POST請求

fetch('/users', { 
  method: 'POST', 
  headers: { 
    'Accept': 'application/json', 
    'Content-Type': 'application/json' 
  }, 
  body: JSON.stringify({ 
    name: 'Hubot', 
    login: 'hubot', 
  }) 
})

檢查請求狀態

function checkStatus(response) { 
  if (response.status >= 200 && response.status < 300) { 
    return response 
  } else { 
    var error = new Error(response.statusText) 
    error.response = response 
    throw error 
  } 
} 
function parseJSON(response) { 
  return response.json() 
} 
fetch('/users') 
  .then(checkStatus) 
  .then(parseJSON) 
  .then(function(data) { 
    console.log('request succeeded with JSON response', data) 
  }).catch(function(error) { 
    console.log('request failed', error) 
  })

采用promise形式

Promise 對象是一個返回值的代理,這個返回值在promise對象創建時未必已知。它允許你為異步操作的成功或失敗指定處理方法。 這使得異步方法可以像同步方法那樣返回值:異步方法會返回一個包含了原返回值的 promise 對象來替代原返回值。
Promise構造函數接受一個函數作為參數,該函數的兩個參數分別是resolve方法和reject方法。如果異步操作成功,則用resolve方法將Promise對象的狀態變為“成功”(即從pending變為resolved);如果異步操作失敗,則用reject方法將狀態變為“失敗”(即從pending變為rejected)。
promise實例生成以后,可以用then方法分別指定resolve方法和reject方法的回調函數。

//創建一個promise對象 
var promise = new Promise(function(resolve, reject) { 
  if (/* 異步操作成功 */){ 
    resolve(value); 
  } else { 
    reject(error); 
  } 
}); 
//then方法可以接受兩個回調函數作為參數。 
//第一個回調函數是Promise對象的狀態變為Resolved時調用,第二個回調函數是Promise對象的狀態變為Reject時調用。 
//其中,第二個函數是可選的,不一定要提供。這兩個函數都接受Promise對象傳出的值作為參數。 
promise.then(function(value) { 
  // success 
}, function(value) { 
  // failure 
});

那么結合promise后fetch的用法:

//Fetch.js 
export function Fetch(url, options) { 
  options.body = JSON.stringify(options.body) 
  const defer = new Promise((resolve, reject) => { 
    fetch(url, options) 
      .then(response => { 
        return response.json() 
      }) 
      .then(data => { 
        if (data.code === 0) { 
          resolve(data) //返回成功數據 
        } else { 
            if (data.code === 401) { 
            //失敗后的一種狀態 
            } else { 
            //失敗的另一種狀態 
            } 
          reject(data) //返回失敗數據 
        } 
      }) 
      .catch(error => { 
        //捕獲異常 
        console.log(error.msg) 
        reject()  
      }) 
  }) 
  return defer 
}

調用Fech方法:

import { Fetch } from './Fetch' 
Fetch(getAPI('search'), { 
  method: 'POST', 
  options 
}) 
.then(data => { 
  console.log(data) 
})

三:支持狀況及解決方案

原生支持率并不高,幸運的是,引入下面這些 polyfill 后可以完美支持 IE8+ :

由于 IE8 是 ES3,需要引入 ES5 的 polyfill: es5-shim, es5-sham
引入 Promise 的 polyfill: es6-promise
引入 fetch 探測庫:fetch-detector
引入 fetch 的 polyfill: fetch-ie8
可選:如果你還使用了 jsonp,引入 fetch-jsonp
可選:開啟 Babel 的 runtime 模式,現在就使用 async/await

以上就是“fetch()函數如何使用”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

子洲县| 绥芬河市| 洛阳市| 施甸县| 长宁县| 洞口县| 洛川县| 永兴县| 大石桥市| 江北区| 兴山县| 西丰县| 通城县| 富源县| 沙田区| 铜鼓县| 上林县| 武鸣县| 古浪县| 阿勒泰市| 万荣县| 平陆县| 金坛市| 鄂托克旗| 桐庐县| 格尔木市| 九龙城区| 仁化县| 牙克石市| 深州市| 桃江县| 永安市| 西藏| 信阳市| 嫩江县| 兴仁县| 潜山县| 睢宁县| 宁乡县| 台中县| 青田县|