react路由,脚手架

  1. react脚手架的使用

    import React,{Component} from 'react'
    class 组件名 extends Component {state ={数据}}
    样式类名会全局泄露
    
  2. Axios

    组件下直接引入axios
    Publick文件夹是特殊路径
    配置代理:package.json下 "proxy":"http://localhost:3001"
    Post请求使用非受控组件
    <input type="text" ref={(ref)=>this.user=ref}/>
    
  3. 路由基础

    引入模块:import {BrowserRouter as Router,NavLink,Router,Switcj}from 'react-router-dom';
    或import{HashRouter as Router,Link,Route}from 'react-router-dom'
    
    Router:路由承载区域
    NavLink/Link :点击a链接
    Route:渲染组件视图
    Switch:匹配到路径后,之后的相同路径就不会再匹配了
    Redirect:重定向
    
  4. 路由动态传参:

    path='/home/:id'
    <NavLink to={`/home/${this.state.name}`}>home</NavLink>
    接收参数:this.props.match.params.id
    
  5. 编程式导航:

    this.props.history.push('/list')
    this.props.history({pathname:'/list',obj:{name:'jack',age:18}})
    接收参数:this.props.history.location.obj
    
  6. 子路由:和主路由配置方法相同

  7. path=’*’ 4040页面 exact 加在link前,精确匹配

全部评论

相关推荐

accaacc:2到4k,不是2k到4k,所以年薪是30块
点赞 评论 收藏
分享
字节 飞书绩效团队 (n+2) * 15 + 1k * 12 + 1w
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务