2023react后端请求数据怎么实现

 所属分类:web前端开发

 浏览:100次-  评论: 0次-  更新时间:2023-01-09
描述:更多教程资料进入php教程获得。 react后端请求数据的实现方法:1、在package.json中配置“ "proxy":"http://localhost:5000"”;2、在src...
更多教程资料进入php教程获得。

react后端请求数据的实现方法:1、在package.json中配置“ "proxy":"http://localhost:5000"”;2、在src目录下创建“setupProxy.js”文件;3、调用“setupProxy.js”中配置的功能,代码如“createProxyMiddleware('/api2',{target:...}”。

本教程操作环境:Windows10系统、react18.0.0版、Dell G3电脑。

react后端请求数据怎么实现?

react-ajax请求后台数据方法

react-ajax

axios

方法一:在package.json中配置

 "proxy":"http://localhost:5000"
登录后复制
  • 这样localhost:5000就是我们要代理到的服务器
  getStudentData = () => {
    axios.get('/students').then(
      (result) => { console.log(result.data); },
      (reason) => { console.log(reason); })
  }
登录后复制
  • 获取localhost:5000中/students的数据

**优点:**配置简单,前端请求资源不需要任何前缀

**缺点:**不能配置多个代理服务器

方法二:在src目录下创建setupProxy.js文件

  • 第一步:webpack配置了调用setupProxy.js中配置的功能

  • setupProxy.js

  • 第二步:配置

  • //const proxy=require("http-proxy-middleware")   :视频中请求的包,引用它出现了无法访问的问题//应该使用以下写法*******const { createProxyMiddleware } = require("http-proxy-middleware");module.exports=function(app){
        app.use(
            createProxyMiddleware('/api1',{//遇见/api1前缀的请求,就会触发该代理配置
                target:"http://localhost:5000",//请求转发给谁
                changeOrigin:true,//控制服务器收到的请求头中Host字段的值:host就是主机名+端口号
                	//true:后端接收到的host:localhost:5000
                	//false:后端接收到的host:localhost:3000
                	//系统默认为false,一般会设为true
                pathRewrite:{"^/api1":""}//重写请求路径(必须要写)
                //不写:后台接收到的请求路径:/api1/student
                //写了:后台请求的路径:/student
            }),
            createProxyMiddleware('/api2',{
                target:"http://localhost:5001",
                changeOrigin:true,
                pathRewrite:{"^/api2":""}
            }),
        )}
    登录后复制
  • 解决问题链接:https://www.csdn.net/tags/OtTaIg0sNzE3OC1ibG9n.html

跨域请求真实接口案例

  • App.jsx

  • import React, { Component } from 'react'
    import Search from './components/Search'
    import List from './components/List'
    import './App.css'
    
    export default class App extends Component {
    state={users:[]}
    getSearchResult=(result)=>{
      this.setState({users:result})
    }
    
      render() {
        return (
          <div className="container">
            <Search getSearchResult={this.getSearchResult}/>
            <List users={this.state.users}/>
          </div>
        )
      }
    }
    登录后复制
  • Search.jsx

  • import React, { Component } from 'react'
    import axios from 'axios'
    import './index.css'
    
    export default class Search extends Component {
    
      search = () => {
        //获取输入框中的值
        const { value } = this.keyWordElement;
        //发送请求
        axios.get(`/api1/search/users?q=${value}`).then(
          result => {
            this.props.getSearchResult(result.data.items)
          },
          reason => {
            console.log(reason);
          })
      }
    
    
    
      render() {
        return (
          <section className="jumbotron">
            <h3 className="jumbotron-heading">搜索github用户</h3>
            <div>
              <input ref={c => this.keyWordElement = c} type="text" placeholder="enter the name you search" />&nbsp;<button onClick={this.search}>搜索</button>
            </div>
          </section>
        )
      }
    }
    登录后复制
  • List.jsx

import React, { Component } from 'react'

import './index.css'
export default class List extends Component {
  render() {
    return (
      <div className="row">
        {this.props.users.map(item=>{
            return    <div key={item.id} className="card">
                <a href={item.html_url} target="_blank">
                  <img src={item.avatar_url} style={{ width: "100px" }} />
                </a>
                <p className="card-text">{item.login}</p>
              </div>
        })}
  
       
      </div>  
    )
  }
}
登录后复制

react-任意组件间的通信

消息订阅与发布机制

PubSubJs:

  • pub:(publish)发布
  • sub:(subscribe)订阅

pubsub-js:就是用来实现发布订阅的,可以把它看过vue中的eventBus,看作是函数的载体

  • 订阅方:创建一个函数,并且将这个函数传给pubsub做托管

    • var token=PubSub.subscribe("myTopic",myFunction[托管的函数])//token,是当前订阅函数的唯一id,可以用来取消订阅
      登录后复制
  • 发布方:发布的意思就是通过调用订阅方指定的函数,实现传参或执行操作功能

    • PubSub.publish('myTopic','需要发送给订阅者的内容')
      登录后复制

第一步:添加pubsub-js

  • yarn add pubsub-js
    登录后复制

**第二步:**在组件中导入

  • import PubSub from 'pubsub-js'
    登录后复制

**第三步:**调用PubSub订阅函数(一般是在componentDidMount钩子函数中订阅)

  •   componentDidMount(){
        this.token=PubSub.subscribe("changeState",this.changeStateObj)
      }
    登录后复制

demo

List.jsx

import React, { Component } from 'react'
import PubSub from 'pubsub-js'
import './index.css'
export default class List extends Component {
  state={
    users:[],//拿到的用户信息
    isFirst:true,//是否第一次访问
    isLoading:false,//是否正在加载
    err:"",//返回的错误信息
  
  }

  changeStateObj=(msg,value)=>{
    this.setState(value)
  }

  componentDidMount(){
    this.token=PubSub.subscribe("changeState",this.changeStateObj)
  }
  componentWillUnmount(){
    PubSub.unsubscribe(this.token)
  }
 
  render() {
    let {users,isFirst,isLoading,err}=this.state
    return (
      <div className="row">
        {
          isFirst?<h2>输入搜索内容搜索用户</h2>:
          isLoading?<h2>Loading...</h2>:
          err?<h2>{err}</h2>:
        
          users.map(item=>{
            return    <div key={item.id} className="card">
                <a href={item.html_url} target="_blank">
                  <img src={item.avatar_url} style={{ width: "100px" }} />
                </a>
                <p className="card-text">{item.login}</p>
              </div>
        })}
  
       
      </div>  
    )
  }
}
登录后复制

Search.jsx

import React, { Component } from 'react'
import axios from 'axios'
import './index.css'
import PubSub from 'pubsub-js'

export default class Search extends Component {
  

  search = () => {
    //获取输入框中的值
    const { value } = this.keyWordElement;
    PubSub.publish('changeState',{isFirst:false,isLoading:true})
    //发送请求
    axios.get(`/api1/search/users2?q=${value}`).then(
      result => {
        PubSub.publish('changeState',{isLoading:false,users:result.data.items})

      },
      reason => {
        PubSub.publish('changeState',{isLoading:false,err:reason.message})

      })
  }



  render() {
    return (
      <section className="jumbotron">
        <h3 className="jumbotron-heading">搜索github用户</h3>
        <div>
          <input ref={c => this.keyWordElement = c} type="text" placeholder="enter the name you search" />&nbsp;<button onClick={this.search}>搜索</button>
        </div>
      </section>
    )
  }
}
登录后复制

App.jsx

import React, { Component } from 'react'
import Search from './components/Search'
import List from './components/List'
import './App.css'

export default class App extends Component {



  render() {
    return (
      <div className="container">
        <Search />
        <List/>
      </div>
    )
  }
}
登录后复制

发送ajax请求的方式有哪些?

  • xhr:xmlHttpRequest:传统的ajax
    • jQuery:封装了xhr
    • axios:封装了xhr
  • **fetch(取来)?*window内置的,不用借用第三方库,直接使用
    • 缺点:目前不是很好用,没有请求发送拦截器

xhr

image-20220423142322865

fetch

  • 缺点:兼容性不高
  • 优点:没有用xhr,不用安装第三方库,原生

image-20220423142356794

fetch最优写法

let getData=async()=>{	
	try{
        let result=await fetch(url);
        let data=await result.json();
    }catch(error){
        console.log('请求错误',error)
    }
}
登录后复制
推荐学习:《react视频教程》

以上就是react后端请求数据怎么实现的详细内容,更多请关注zzsucai.com其它相关文章!

 标签: react,
积分说明:注册即送10金币,每日签到可获得更多金币,成为VIP会员可免金币下载! 充值积分充值会员更多说明»

讨论这个素材(0)回答他人问题或分享使用心得奖励金币

〒_〒 居然一个评论都没有……

表情  文明上网,理性发言!