溫馨提示×

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

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

使用PHP無(wú)法獲取React Native Fecth參數(shù)如何解決

發(fā)布時(shí)間:2021-02-03 17:58:31 來(lái)源:億速云 閱讀:241 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)使用PHP無(wú)法獲取React Native Fecth參數(shù)如何解決,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

React Native 使用 fetch 進(jìn)行網(wǎng)絡(luò)請(qǐng)求,推薦Promise的形式進(jìn)行數(shù)據(jù)處理。

官方的 Demo 如下:

fetch('https://mywebsite.com/endpoint/', { 
 method: 'POST',
 headers: {
 'Accept': 'application/json',
 'Content-Type': 'application/json',
 },
 body: JSON.stringify({
 username: 'yourValue',
 pass: 'yourOtherValue',
 })
}).then((response) => response.json())
.then((res) => {
 console.log(res);
})
.catch((error) => {
 console.warn(error);
});

但是實(shí)際在進(jìn)行開(kāi)發(fā)的時(shí)候,卻發(fā)現(xiàn)了php打印出 $_POST為空數(shù)組。

這個(gè)時(shí)候自己去搜索了下,提出了兩種解決方案:

一、構(gòu)建表單數(shù)據(jù)

function toQueryString(obj) { 
 return obj ? Object.keys(obj).sort().map(function (key) {
  var val = obj[key];
  if (Array.isArray(val)) {
   return val.sort().map(function (val2) {
    return encodeURIComponent(key) + '=' + encodeURIComponent(val2);
   }).join('&');
  }

  return encodeURIComponent(key) + '=' + encodeURIComponent(val);
 }).join('&') : '';
}

// fetch
body: toQueryString(obj)

但是這個(gè)在自己的機(jī)器上并不生效。

二、服務(wù)端解決方案

獲取body里面的內(nèi)容,在php中可以這樣寫(xiě):

$json = json_decode(file_get_contents('php://input'), true);
var_dump($json['username']);

這個(gè)時(shí)候就可以打印出數(shù)據(jù)了。然而,我們的問(wèn)題是 服務(wù)端的接口已經(jīng)全部弄好了,而且不僅僅需要支持ios端,還需要web和Android的支持。這個(gè)時(shí)候要做兼容我們的方案大致如下:

    1、我們?cè)?code>fetch參數(shù)中設(shè)置了 header 設(shè)置 app 字段,加入app名稱:ios-appname-1.8;

    2、我們?cè)诜?wù)端設(shè)置了一個(gè)鉤子:在每次請(qǐng)求之前進(jìn)行數(shù)據(jù)處理:

// 獲取 app 進(jìn)行數(shù)據(jù)集中處理
  if(!function_exists('apache_request_headers') ){
   $appName = $_SERVER['app'];
  }else{
   $appName = apache_request_headers()['app'];
  }

  // 對(duì) RN fetch 參數(shù)解碼
  if($appName == 'your settings') {
   $json = file_get_contents('php://input');
   $_POST = json_decode($json, TRUE );
  }

這樣服務(wù)端就無(wú)需做大的改動(dòng)了。

對(duì) Fetch的簡(jiǎn)單封裝

由于我們的前端之前用 jquery較多,我們做了一個(gè)簡(jiǎn)單的fetch封裝:

var App = {

 config: {

  api: 'your host',
  // app 版本號(hào)
  version: 1.1,

  debug: 1,
 },

 serialize : function (obj) {
  var str = [];
  for (var p in obj)
   if (obj.hasOwnProperty(p)) {
    str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
   }
  return str.join("&");
 },

 // build random number
 random: function() {
  return ((new Date()).getTime() + Math.floor(Math.random() * 9999));
 },



 // core ajax handler
 send(url,options) {
  var isLogin = this.isLogin();
  var self = this;


  var defaultOptions = {
   method: 'GET',
   error: function() {
    options.success({'errcode':501,'errstr':'系統(tǒng)繁忙,請(qǐng)稍候嘗試'});
   },
   headers:{
    'Authorization': 'your token',
    'Accept': 'application/json',
    'Content-Type': 'application/json',
    'App': 'your app name'
   },
   data:{
    // prevent ajax cache if not set
    '_regq' : self.random()
   },
   dataType:'json',
   success: function(result) {}
  };

  var options = Object.assign({},defaultOptions,options);
  var httpMethod = options['method'].toLocaleUpperCase();
  var full_url = '';
  if(httpMethod === 'GET') {
   full_url = this.config.api + url + '?' + this.serialize(options.data);
  }else{
   // handle some to 'POST'
   full_url = this.config.api + url;
  }

  if(this.config.debug) {
   console.log('HTTP has finished %c' + httpMethod + ': %chttp://' + full_url,'color:red;','color:blue;');
  }
  options.url = full_url;


  var cb = options.success;

  // build body data
  if(options['method'] != 'GET') {
   options.body = JSON.stringify(options.data);
  }

  // todo support for https
  return fetch('http://' + options.url,options)
    .then((response) => response.json())
    .then((res) => {
     self.config.debug && console.log(res);
     if(res.errcode == 101) {
      return self.doLogin();
     }

     if(res.errcode != 0) {

      self.handeErrcode(res);
     }
     return cb(res,res.errcode==0);
    })
    .catch((error) => {
     console.warn(error);
    });
 },


 handeErrcode: function(result) {
  //
  if(result.errcode == 123){


   return false;
  }

  console.log(result);
  return this.sendMessage(result.errstr);
 },


 // 提示類

 sendMessage: function(msg,title) {
  if(!msg) {
   return false;
  }
  var title = title || '提示';

  AlertIOS.alert(title,msg);
 }

};

module.exports = App;

這樣開(kāi)發(fā)者可以這樣使用:

App.send(url,{ 
 success: function(res,isSuccess) {
 }
})

上述就是小編為大家分享的使用PHP無(wú)法獲取React Native Fecth參數(shù)如何解決了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

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

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

AI