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

溫馨提示×

溫馨提示×

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

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

JavaScript中使用Fetch()的案例

發布時間:2020-10-10 18:01:14 來源:億速云 閱讀:221 作者:小新 欄目:web開發

這篇文章主要介紹JavaScript中使用Fetch()的案例,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

Fetch()提供了一種方式進行跨網絡異步請求資源的方式,用于訪問和操作HTTP管道的部分,比如:請求和相應。

fetch常見的坑:
  • 接收到表示錯誤的HTTP狀態碼時,fetch()返回的Promise不會被標記為reject(即使狀態碼為404或500)。fetch()會將Promise狀態標記為resolve(但resolve返回值但OK 屬性設置為 false)。網絡故障或請求被阻止才會標記為reject。

  • fetch()不會從服務端發送或接收任何cookies。發送cookies 需要設置 fetch(url, {credentials: 'include'}) 選項。

原始XHR請求

var xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.responseType = 'json';

xhr.onload = function() {
  console.log(xhr.response);
};

xhr.onerror = function() {
  console.log("Oops, error");
};

xhr.send();

fetch請求

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

使用箭頭函數:

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

獲取一個JSON文件,并打印到控制臺。指明資源路徑,然后返回一個Response對象,使用json()方法獲取JSON但內容。

fetch參數

fetch()接受第二個可選參數,控制不同配置的init參數。

// Example POST method implementation:

postData('http://example.com/answer', {answer: 42})
  .then(data => console.log(data)) // JSON from `response.json()` call
  .catch(error => console.error(error))

function postData(url, data) {
  // Default options are marked with *
  return fetch(url, {
    body: JSON.stringify(data), // must match 'Content-Type' header
    cache: 'no-cache', // *default, no-cache, reload, force-cache, only-if-cached
    credentials: 'same-origin', // include, same-origin, *omit
    headers: {
      'user-agent': 'Mozilla/4.0 MDN Example',
      'content-type': 'application/json'
    },
    method: 'POST', // *GET, POST, PUT, DELETE, etc.
    mode: 'cors', // no-cors, cors, *same-origin
    redirect: 'follow', // manual, *follow, error
    referrer: 'no-referrer', // *client, no-referrer
  })
  .then(response => response.json()) // parses response to JSON
}
包含憑據的請求

包含憑據的請求:

fetch('https://example.com', {
    //將credentials: 'include'添加到傳遞給fetch()方法的init對象
    credentials: 'include' 
})

若在同源櫥發送憑據:

fetch('https://example.com', {
  credentials: 'same-origin'  
})

確保瀏覽器不在請求中包含憑據:

fetch('https://example.com', {
  credentials: 'omit'  
})
上傳JSON數據
var url = 'https://example.com/profile';
var data = {username: 'example'};

fetch(url, {
  method: 'POST', // or 'PUT'
  body: JSON.stringify(data), // data can be `string` or {object}!
  headers: new Headers({
    'Content-Type': 'application/json'
  })
}).then(res => res.json())
.catch(error => console.error('Error:', error))
.then(response => console.log('Success:', response));
上傳文件

使用 <input type="file" />FormData()fetch()

Headers

使用Headers構造函數創建headers對象,headers對象為多鍵值對:

var content = "Hello World";
var myHeaders = new Headers();
myHeaders.append("Content-Type", "text/plain");
myHeaders.append("Content-Length", content.length.toString());
myHeaders.append("X-Custom-Header", "ProcessThisImmediately");

內容可被獲取:

console.log(myHeaders.has("Content-Type")); // true
console.log(myHeaders.has("Set-Cookie")); // false

Fetch 優點主要有:

  • 語法簡潔,更加語義化

  • 基于標準 Promise 實現,支持 async/await

  • 同構方便,使用 isomorphic-fetch

以上是JavaScript中使用Fetch()的案例的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

佳木斯市| 萝北县| 浦江县| 尼木县| 西平县| 偃师市| 河西区| 临沧市| 南靖县| 额尔古纳市| 延安市| 诸城市| 呼图壁县| 湖北省| 恩平市| 玛曲县| 大洼县| 永州市| 米林县| 库尔勒市| 土默特左旗| 江安县| 弥渡县| 唐山市| 博乐市| 广南县| 常州市| 化隆| 噶尔县| 海城市| 阿拉善左旗| 长垣县| 蒲城县| 白玉县| 宿州市| 阿克| 原平市| 喀喇| 丹江口市| 巢湖市| 苍山县|