使用XHR發送一個json請求通常是這樣:git
1 const xhr = new XMLHttpRequest() 2 xhr.open('Get', url) 3 xhr.responseType = 'json' 4 5 xhr.onload = () => { 6 console.log(xhr.response) 7 } 8 9 xhr.onerror = () => { 10 console.log('error') 11 } 12 13 xhr.send()
使用fetch的實例:github
1 fetch(url).then(response => response.json()) 2 .then(data => console.log(data)) 3 .catch(e => console.log('error', e))
input(必須) 定義要獲取的資源(請求地址)web
init(可選)ajax
參數 | 描述json
method 請求使用的方法,如GET、POST跨域
headers http請求頭(user-Agent, Cookie)promise
body 請求的body信息瀏覽器
mode緩存
fetch能夠設置不一樣的模式使得請求有效. 模式可在fetch方法的第二個參數對象中定義.服務器
可定義的模式以下:
除此以外, 還有兩種不太經常使用的mode類型, 分別是 navigate , websocket , 它們是 HTML標準 中特殊的值, 這裏不作詳細介紹.
credentials
omit(缺省值,默認爲該值)、same-origin(同源,即是同域請求才發送cookie)、include(任何請求都帶cookie)
cache
若是fetch請求的header裏包含 If-Modified-Since, If-None-Match, If-Unmodified-Since, If-Match, 或者 If-Range 之一, 且cache的值爲 default , 那麼fetch將自動把 cache的值設置爲 "no-store"
Fetch - response type
一個fetch請求的相應類型(response.type)爲以下三種之一:
注意: 不管是同域仍是跨域, 以上 fetch 請求都到達了服務器.
Fetch 常見坑
1.Fetch 請求默認是不帶 cookie 的,須要設置 fetch(url, {credentials: 'include'})
默認狀況下, fetch 不會從服務端發送或接收任何 cookies, 若是站點依賴於維護一個用戶會話,則致使未經認證的請求(要發送 cookies,必須發送憑據頭)
2.服務器返回 400,500 錯誤碼時並不會 reject,只有網絡錯誤這些致使請求不能完成時,fetch 纔會被 reject。
當接收到一個表明錯誤的 HTTP 狀態碼時,從 fetch()返回的 Promise 不會被標記爲 reject, 即便該 HTTP 響應的狀態碼是 404 或 500。相反,它會將 Promise 狀態標記爲 resolve (可是會將 reolve 的返回值的 ok 屬性設置爲 false, 想要精確判斷fetch()是否成功,須要包含 promise resolved 的狀況,此時再判斷 Response.ok 是否是爲 true。HTTP狀態碼爲200-299是纔會設置爲true), 僅當網絡故障時或請求被阻止時,纔會標記爲 rejec
使用Fetch封裝request方法
http.js
1 import 'whatwg-fetch'; 2 3 const netErrorStatu = 1; // 網絡錯誤 4 const serverErrorStatu = 2; // 服務器錯誤 5 const formatErrorStatu = 3; // 數據格式錯誤 6 const logicErrorStatu = 4; // 業務邏輯錯誤 7 8 const errorMsg = { 9 [netErrorStatu]: '網絡錯誤', 10 [serverErrorStatu]: '服務器錯誤', 11 [formatErrorStatu]: '數據格式錯誤', 12 [logicErrorStatu]: '業務邏輯錯誤' 13 }; 14 15 class CustomFetchError { 16 constructor(errno, data) { 17 this.errno = errno; 18 this.msg = errorMsg[errno]; 19 this.data = data; 20 } 21 } 22 23 export function buildQuery(data) { 24 const toString = Object.prototype.toString; 25 26 const res = Object.entries(data).reduce((pre, [key, value]) => { 27 let newValue; 28 29 if (Array.isArray(value) || toString.call(value) === '[object Object]') { 30 newValue = JSON.stringify(value); 31 } else { 32 newValue = (value === null || value === undefined) ? '' : value; 33 } 34 35 pre.push(`${key}=${encodeURIComponent(newValue)}`); 36 37 return pre; 38 }, []); 39 40 return res.join('&'); 41 } 42 43 export async function request(input, opt) { 44 // 設置請求默認帶cookie 45 const init = Object.assign({ 46 credentials: 'include' 47 }, opt); 48 49 let res; 50 // 僅當網絡故障時或請求被阻止時,纔會標記爲 rejec 51 try { 52 res = await fetch(input, init); 53 } catch (e) { 54 throw new CustomFetchError(netErrorStatu, e); 55 } 56 // 僅HTTP狀態碼爲200-299是纔會設置爲true 57 if (!res.ok) { 58 throw new CustomFetchError(serverErrorStatu, res); 59 } 60 61 let data; 62 // fetch()請求返回的response是Stream對象,調用response.json時因爲異步讀取流對象因此返回的是一個Promise對象 63 try { 64 data = await res.json(); 65 } catch (e) { 66 throw new CustomFetchError(formatErrorStatu, e); 67 } 68 // 根據和後臺的約定設置的錯誤處理 69 if (!data || data.errno !== 0) { 70 throw new CustomFetchError(logicErrorStatu, data); 71 } 72 73 return data.data; 74 } 75 76 export function get(url, params = {}, opt = {}) { 77 const init = Object.assign({ 78 method: 'GET' 79 }, opt); 80 81 // ajax cache 82 Object.assign(params, { 83 timestamp: new Date().getTime() 84 }); 85 86 const paramsStr = buildQuery(params); 87 88 const urlWithQuery = url + (paramsStr ? `?${paramsStr}` : ''); 89 90 return request(urlWithQuery, init); 91 } 92 93 export function post(url, params = {}, opt = {}) { 94 const headers = { 95 'Content-Type': 'application/x-www-form-urlencoded' 96 }; 97 98 const init = Object.assign({ 99 method: 'POST', 100 body: buildQuery(params), 101 headers 102 }, opt); 103 104 return request(url, init); 105 } 106 107 export default { 108 request, 109 get, 110 post 111 };
requset.js
1 import { notification } from 'antd'; 2 import Loading from 'components/Loading'; 3 import { LOGIN_URL } from 'constants/basic'; 4 import * as http from './http'; 5 6 const loading = Loading.newInstance(); 7 8 async function request(method, url, params, opt = {}, httpOpt) { 9 /** 10 * needLoading 是否添加loading圖片 11 * checkAccount 驗證未登錄是否跳登錄頁面 12 * showErrorMsg 是都顯示通用錯誤提示 13 */ 14 const { 15 needLoading = true, 16 checkAccount = true, 17 showErrorMsg = true 18 } = opt; 19 20 if (needLoading) { 21 loading.add(); 22 } 23 24 let res; 25 26 try { 27 res = await http[method](url, params, httpOpt); 28 } catch (e) { 29 if (checkAccount && e.errno === 4 && e.data.errno === 10000) { 30 location.href = LOGIN_URL; 31 } 32 33 if (showErrorMsg) { 34 notification.error({ 35 message: '提示信息', 36 description: e.errno === 4 ? e.data.msg : e.msg 37 }); 38 } 39 40 throw e; 41 } finally { 42 if (needLoading) { 43 loading.remove(); 44 } 45 } 46 47 return res; 48 } 49 50 export function get(...arg) { 51 return request('get', ...arg); 52 } 53 54 export function post(...arg) { 55 return request('post', ...arg); 56 }
github的代碼地址: https://github.com/haozhaohang/library