溫馨提示×

溫馨提示×

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

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

ES6 fetch函數(shù)與后臺交互實現(xiàn)

發(fā)布時間:2020-09-26 15:21:30 來源:腳本之家 閱讀:176 作者:Ricky_Huang 欄目:web開發(fā)

最近在學(xué)習(xí)react-native,遇到調(diào)用后端接口的問題.看了看官方文檔,推薦使用es6的fetch來與后端進(jìn)行交互,在網(wǎng)上找了一些資料.在這里整理,方便以后查詢.

1.RN官方文檔中,可使用XMLHttpRequest

var request = new XMLHttpRequest();
request.onreadystatechange = (e) = >{
  if (request.readyState !== 4) {
    return;
  }
  if (request.status === 200) {
    console.log('success', request.responseText);
  } else {
    console.warn('error');
  }
};
request.open('GET', 'https://mywebsite.com/endpoint.php');
request.send();

這是http的原生方法,這里不做多的介紹.

2.RN官方文檔中,推薦使用fetch

fetch('https://mywebsite.com/endpoint/', {
  method: 'POST',
  headers: {
    'Accept': 'application/json',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    firstParam: 'yourValue',
    secondParam: 'yourOtherValue',
  })
}).then(function(res) {  console.log(res)
})

body中的數(shù)據(jù)就是我們需要向服務(wù)器提交的數(shù)據(jù),比如用戶名,密碼等;如果上述body中的數(shù)據(jù)提交失敗,那么你可能需要把數(shù)據(jù)轉(zhuǎn)換成如下的表單提交的格式:

fetch('https://mywebsite.com/endpoint/', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded',
  },
  body: 'key1=value1&key2=value2'
}).then(function(res) {

    console.log(res)
})

這樣可以獲取純文本的返回數(shù)據(jù).

如果你需要返回json格式的數(shù)據(jù):

fetch('https://mywebsite.com/endpoint/').then(function(res) {

  if (res.ok) {

    res.json().then(function(obj) {

      // 這樣數(shù)據(jù)就轉(zhuǎn)換成json格式的了

    })

  }

}, function(ex) {
  console.log(ex)
})

fetch模擬表單提交:

fetch('doAct.action', { 

  method: 'post', 

  headers: { 

   "Content-type": "application/x-www-form-urlencoded; charset=UTF-8" 

  }, 

  body: 'foo=bar&lorem=ipsum' 

 })

 .then(json) 

 .then(function (data) { 

  console.log('Request succeeded with JSON response', data); 

 }) 

 .catch(function (error) { 

  console.log('Request failed', error); 

 });

不過無論是ajax還是fetch,都是對http進(jìn)行了一次封裝,大家各取所好吧.

參考文檔:https://developer.mozilla.org/zh-CN/docs/Web/API/GlobalFetch/fetch

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI