欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ES6 fetch函数与后台交互实现

程序员文章站 2023-10-29 15:28:58
最近在学习react-native,遇到调用后端接口的问题.看了看官方文档,推荐使用es6的fetch来与后端进行交互,在网上找了一些资料.在这里整理,方便以后查询. 1...

最近在学习react-native,遇到调用后端接口的问题.看了看官方文档,推荐使用es6的fetch来与后端进行交互,在网上找了一些资料.在这里整理,方便以后查询.

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中的数据就是我们需要向服务器提交的数据,比如用户名,密码等;如果上述body中的数据提交失败,那么你可能需要把数据转换成如下的表单提交的格式:

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)
})

这样可以获取纯文本的返回数据.

如果你需要返回json格式的数据:

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

  if (res.ok) {

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

      // 这样数据就转换成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进行了一次封装,大家各取所好吧.

参考文档:https://developer.mozilla.org/zh-cn/docs/web/api/globalfetch/fetch

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。