ホームページ  >  記事  >  ウェブフロントエンド  >  リアクションフェッチでデータをリクエストする方法

リアクションフェッチでデータをリクエストする方法

藏色散人
藏色散人オリジナル
2023-01-05 10:02:371967ブラウズ

React フェッチ リクエスト データ メソッド: 1. リクエストされたメソッドをライフサイクルの「componentDidMount」に配置します; 2. フェッチ リクエストをカプセル化します; 3. 「function checkStatus(response){...}」を渡しますリクエストのステータスを確認する方法; 4. カプセル化されたリクエストを使用し、結果をサーバーまたはブラウザに出力します。

リアクションフェッチでデータをリクエストする方法

#このチュートリアルの動作環境: Windows 10 システム、react16 バージョン、Dell G3 コンピューター。

react はどのようにリクエスト データを取得しますか?

React Fetch request

最近使用する必要があるので学習してください

1.fetch

Promise -ベースの ajax リクエスト

https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API

2. React は fetch を使用します

リクエストメソッドは通常、ライフサイクルのcomponentDidMountに配置されます。

リクエストされたデータの基本形式

リアクションフェッチでデータをリクエストする方法

import React from 'react'
class RequestStu extends React.Component{
  constructor(props){
    super(props)
    this.state={
      test:{},
      arr:[]
    }
  }
  componentDidMount(){
    fetch('http://localhost/console/scene/scenedetaillist',{
      method:'GET',
      headers:{
        'Content-Type':'application/json;charset=UTF-8'
      },
      mode:'cors',
      cache:'default'
    })
     .then(res =>res.json())
     .then((data) => {
       console.log(data)  
       this.setState({
         test:data
       },function(){
         console.log(this.state.test)
         let com = this.state.test.retBody.map((item,index)=>{
           console.log(item.id)
           return <li key={index}>{item.name}</li>
         })
         this.setState({
           arr : com
         },function(){
           console.log(this.state.arr)
         })
       })
     }) 
  }
  render(){
    return (
      <div>
       <ul>
          {
            this.state.arr
          }
       </ul>
      </div>
    )
  }
}
export default RequestStu

リクエスト後に表示されます:

リアクションフェッチでデータをリクエストする方法

3. フェッチリクエストをカプセル化する

簡単に呼び出せるようにカプセル化する

コードアドレス: https://github.com/klren0312/react_study/blob/master/stu13/src /helper.js

helper.js

//全局路径
const commonUrl = &#39;http://127.0.0.1:3456&#39;
//解析json
function parseJSON(response){
  return response.json()
}
//检查请求状态
function checkStatus(response){
  if(response.status >= 200 && response.status < 500){
    return response
  }
  const error = new Error(response.statusText)
  error.response = response
  throw error
}
export default  function request(options = {}){
  const {data,url} = options
  options = {...options}
  options.mode = &#39;cors&#39;//跨域
  delete options.url
  if(data){
    delete options.data
    options.body = JSON.stringify({
      data
    })
  }
  options.headers={
    &#39;Content-Type&#39;:&#39;application/json&#39;
  }
  return fetch(commonUrl+url,options,{credentials: &#39;include&#39;})
    .then(checkStatus)
    .then(parseJSON)
    .catch(err=>({err}))
}

カプセル化されたリクエストの使用

import React from &#39;react&#39;
import request from &#39;./helper.js&#39;
class RequestDemo extends React.Component{
  componentDidMount(){
    request({
      url:&#39;/posttest&#39;,
      method:&#39;post&#39;,
      data:{"Header":{"AccessToken":"eyJ0eXBlIjoiSldUIiwiYWxnIjoiSFM1MTIifQ.eyJzdWIiOiIxMDYiLCJleHBpciI6MTUxMDczODAzNjA5MiwiaXNzIjoiIn0.eo000vRNb_zQOibg_ndhlWbi27hPt3KaDwVk7lQiS5NJ4GS4esaaXxfoCbRc7-hjlyQ8tY_NZ24BTVLwUEoXlA"},"Body":{}}
    }).then(function(res){
      console.log(res)
    })
  }
  render(){
    return (
      <div>
    test
      </div>
    )
  }
}
export default RequestDemo

サーバー印刷

リアクションフェッチでデータをリクエストする方法

ブラウザ印刷

リアクションフェッチでデータをリクエストする方法

ボーナス ヘルパー クラスが付属しています

function parseJSON(response){
  return response.json()
}
function checkStatus(response){
  if(response.status >= 200 && response.status < 500){
    return response
  }
  const error = new Error(response.statusText)
  error.response = response
  throw error
}
/**
 * 登录请求
 * 
 * @param data 数据
 */
export function loginReq(data){ 
  const options = {}
  options.method = &#39;post&#39;
  options.made = &#39;cors&#39;
  options.body = JSON.stringify(data)
  options.headers={
    &#39;Content-Type&#39;:&#39;application/json&#39;
  }
  return fetch(&#39;/loginOk&#39;,{ ...options, credentials:&#39;include&#39;})
    .then(checkStatus)
    .then(parseJSON)
    .then((res)=>{
      if(res.retCode === &#39;0001&#39;){
        localStorage.setItem(&#39;x-access-token&#39;,res.retBody.AccessToken)
        return &#39;success&#39;
      }
      else if(res.retCode === &#39;0002&#39;){
        return &#39;error&#39;
      }
      else if(res.retCode === &#39;0003&#39;){
        return &#39;error&#39;
      }else{
        return ;
      }
      
    })
    .catch(err=>({err}))
}
/**
 * 普通请求
 * @param {*url,*method,*data} options 
 */
export  function request(options = {}){
  const Authorization = localStorage.getItem(&#39;x-access-token&#39;)
  const {data,url} = options
  options = {...options}
  options.mode = &#39;cors&#39;
  delete options.url
  if(data){
    delete options.data
    options.body = JSON.stringify(data)
  }
  options.headers={
    &#39;x-access-token&#39;:Authorization,
    &#39;Content-Type&#39;:&#39;application/json;charset=UTF-8&#39;
  }
  return fetch(url,{ ...options, credentials: &#39;include&#39;})
    .then(checkStatus)
    .then(parseJSON)
    .catch(err=>({err}))
}

推奨学習: 「react ビデオ チュートリアル

以上がリアクションフェッチでデータをリクエストする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。