学习react基础知识

Posted frank000000

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习react基础知识相关的知识,希望对你有一定的参考价值。

路由

手写路由

控制地址栏<Link to=‘/singer‘>歌手</Link>根据改变渲染不同的组件<Route path=‘/singer‘ component={要渲染的组价}><Route>

路由插件 react-router

1 - 3 :react-router 4 - 5 :react-router-dom react-router-nativereact-router

下载安装 
npm install react-router-dom
路由的基本使用

HashRouter BrowserRouter 哈希路由 历史路由 作为组件的父容器控制地址栏的改变 to Link to exact NavLink to exact activeClassName

Route 控制组件的渲染 path exact component render children Switch 百里挑一 只返回第一个匹配到的组件Redirect 重定向

<HashRouter>
<Link exact to=‘/singer‘>歌手</Link>
<NavLink exact to=‘/recomment‘ activeClassName=‘hehe‘>推荐</NavLink>
<Switch>
  <Redirect from=‘/‘ to=‘/singer‘ exact />
  <Route path=‘/singer‘ component={组件}></Route>
  <Route path=‘/recomment‘ render={组件}></Route>
  <Route path=‘/singer‘ children={组件}></Route>
  <Route component={404}>
</Switch>
</HashRouter>

编程式导航和声明式导航(寻找路由对象)

<Link><NavLink>实现路由的跳转 生命式导航t通过js路由对象的方式叫做编程式导航 push replace go goBack goForwd 注意 :正常创建的组件是没有路由对象的

  1. 通过Route 处理过的组件在props里有路由对象

  2. 通过withRouter 处理过的组件也有路由对象

路由传参

动态导航 /hehe/:id this.props.history.push(/singer/${us}/${ps}) 在路由对象的match 里获取传递的参数query /hehe?us=123&ps=123相当于get方法 接受数据在路由对象的 location里 需要自己做字符解析this.props.history.push(‘/singer?us=123&ps=456‘)state 在路由对象的location里接受this.props.history.push({pathname:‘/recommend‘,state:{要传递的数据}})

嵌套路由

在路由里套路由 所有的组价你都可以使用使用 Link Switch ..嵌套路由的上一级 千万不能加精准匹配<Route path=‘/singer‘ render={()=>{ <Route></Route> <Route></Route>}}></Route>

高阶组件

hoc 本质是一个函数 接受一个组件作为参数 返回一个新的组件功能性的封装 减少重复代码一般被高阶组件处理过的组件获取数据 都从props获取

以上是关于学习react基础知识的主要内容,如果未能解决你的问题,请参考以下文章

快速上手React:

[译] 如何在React中写出更优秀的代码

javascript 用于在节点#nodejs #javascript内设置react app的代码片段

React 17 + Vite + ECharts 实现疫情数据可视化「03 学习 React Hooks」

React 17 + Vite + ECharts 实现疫情数据可视化「03 学习 React Hooks」

入门React 17 + Vite + ECharts 实现疫情数据可视化「03 学习 React Hooks」