React入门
什么是React
React中文文档
React是一个用于构建 用户界面的JavaScript库.
用户界面: HTML页面(前端)
React主要用来写HTML页面,或构建Web应用
如果从MVC的角度来看, React仅仅是视图层(V) , 也就是只负责视图的渲染.而并非提供了完整的M和C的功能。
React起源于Facebook的内部项目,做用来架设Instagram的网站.并于2013年5月开源
React特点
1.声明式
你只需要描述UI ( HTML )看起来是什么样,就跟写HTML一样
React负责渲染UI ,并在数据变化时更新UI
1 2 3
| const jsx = <div className="app"> <h1>Hello React! 动态变化数据:{{count}}</h1> </div>
|
2.基于组件
- 组件是React最重要的内容
- 组件表示页面中部分内容
- 组合复用这些组件
3.学习一次,随处使用
- 使用React可以开发Web应用
- 使用React可以开发移动端原生应用( react-native )
- 使用React可以开发VR(虚拟现实)应用(react360)
React基本使用
React的安装
安装命令: npm i react react-dom
- react 包是核心,提供创建元素、组件等功能
- react-dom 包提供DOM相关功能等
React的使用
- 引入react和react-dom两个js文件
1 2 3
| <script src="./node_modules/react/umd/react.development.js"></script> <script src="./node_modules/react-dom/umd/react-dom.development.js"></script>
|
- 创建React元素
React.createElement()
- 参数1:元素名称(标签名)
- 参数2:元素属性
- 参数3:元素的子节点
1 2 3 4 5
|
const title = React.createElement('h1', null, 'Hello React')
|
渲染React元素到页面中 ReactDOM.render()
负责将创建好的元素渲染进页面
- 参数1:要渲染的React元素
- 参数2:挂载点相当于vue中的容器
1 2 3 4
|
ReactDOM.render(title, document.getElementById('root'))
|
React脚手架
- 脚手架是开发现代web应用的必备
- 充分利用Webpack,Babel,ESLint等工具辅助项目开发
- 零配置,无需手动配置繁琐的工具即可使用
- 关注业务,而不是工具配置
使用脚手架
- 初始化项目,命令
npx create-react-app my-app
- 启动项目,在项目根目录执行命令
npm run start
在脚手架中使用React
1.导入react和react-dom两个包。
1 2
| import React from' react , import ReactDOM from 'react-dom'
|
2.调用React.createElement()方法创建react元素。
1
| const title = React.createElement('h1', null, 'Hello React!')
|
3.调用ReactDOM.render()方法渲染react元素到页面中。
1
| ReactDOM.render(title, document.getElementById('root'))
|
JSX
JSX的基本使用
jsx简介
createElement()
1. 繁琐不简洁
1. 不直观
1. 不优雅
jsx
- 跟html写法一样
- 简单
- 识别度高
JSX是JavaScript XML的简写,表示在JavaScript代码中写XML ( HTML )格式的代码。
- 优势:声明式语法更加直观、与HTML结构相同,降低了学习成本、提升开发效率
使用步骤
- 使用jsx语法创建react元素
1 2 3
| const title = <h1>Hello JSX <span>这是span</span> </h1>
|
- 使用
ReactDOM.render()方法渲染react元素到页面
1 2
| ReactDOM.render(title,document.getElementById('root'))
|
总结:
为什么脚手架中可以使用JSX语法?
- JSX 不是标准的ECMAScript语法,它是ECMAScript的语法扩展。
- 需要使用babel编译处理后,才能在浏览器环境中使用。
- create-react- app脚手架中已经默认有该配置,无需手动配置。
- 编译JSX语法的包为: @babel/preset-react.
注意
- React元素的属性名使用驼峰命名法
- 特殊属性名:
- class —> className
- for —> htmlFor
- tabindex —> tabIndex
- 没有子节点的React元素可以用 /> 结束。
- 推荐:使用小括号包裹JSX , 从而避免JS中的自动插入分号陷阱。
1 2 3 4 5 6
| const title = ( <h1 className='title'>Hello JSX <span>这是span</span> <p/> </h1> )
|
jsx中使用js表达式
这点和vue有点不同使用的是单括号
1 2 3 4 5 6 7 8
| const name='Jack'; const title = ( <h1 className='title'>Hello {name} <br/> <span>这是span</span> <p/> </h1> )
|
表达式其实就是可以用变量接收并且可以log出来的
- 在这里,ul中的li被自动循环遍历,而vue中要使用 v-for
1 2 3 4 5 6 7 8 9 10 11 12 13
| const data = ['01','02','03']; const CDOM=( <div> <h1>前端js框架列表</h1> <ul> { data.map((item,index)=>{ return <li key='index'>item</li> }) } </ul> </div> )
|
组件化
理解: 用来实现局部功能效果的代码和资源的集合htm/css/js/image等等)
作用: 复用编码,简化项目编码,提高运行效率
当应用是以多组件的方式实现,这个应用就是一个组件化的应用
这点就不详细写了,在vue中已经了解过了
React面向组件编程
安装React开发者工具 谷歌应用商店搜索即可
函数式组件
组件名首字母大写
- Demo()中的this指向undefined
- 因为babel编译后开了严格模式
1 2 3 4 5
| function Demo() { return <h2>我是函数定义的组件(适用于简单组件的定义)</h2> } ReactDOM.render(<Demo/>, document.getElementById('root'))
|
执行了ReactDOM.render( <MyComponent/…….之后,发生了什么?
- React解析组件标签。找到了Demo组件。
- 发现组件是使用函数定义的。随后调用该函数。将返回的虚拟DOM转为真实DOM,随后呈现在页面中。
类式组件
1 2 3 4 5 6 7 8 9 10
| class Demo extends React.Component{ render(){ return <h2>我是类定义的组件(适用于复杂组件的定义)</h2> } };
ReactDOM.render(<Demo/>, document.getElementById('root'))
|
执行了ReactDOM.render( <MyComponent/…….之后,发生了什么?
- React解析组件标签,找到了MyComponent组件。
- 发现组件是使用类定义的。随后new出来该类的实例,并通过该实例调用到原型上的render方法。
- 将render返回的虚拟DOM转为真实DOM,随后呈现在页面中
简单/复杂组件
- 简单组件无状态(state)
- 复杂组件有状态(state)
组件的状态中存放着数据,数据的改变驱动着页面的改变
跟vue的data存放数据有点相像
组件实例的三大核心属性
新版react的hooks也可以使用这三大属性
1.state
state中存放着数据,官方要求写成对象形式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| class Demo extends React.Component{ constructor(props){ super(props) this.state = { isHot:true } } render(){ const {isHot} = this.state return <h1>今天天气很{isHot ?"炎热":"凉爽"}</h1> } };
ReactDOM.render(<Demo/>, document.getElementById('root'))
|
事件绑定
- 这点和Vue有点区别,react将所有原生的
onclick变成了onClick
- 等号右边不用”“改用{}
onClick={change}这是一个赋值语句,如果加了()则变成了执行之后在返回给onClick,但是却是undefined
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| class Demo extends React.Component{ constructor(props){ super(props) this.state = { isHot:true } } render(){ const {isHot} = this.state return <h1 onClick={change}>今天天气很{isHot ?"炎热":"凉爽"}</h1> } };
ReactDOM.render(<Demo/>, document.getElementById('root')) function change() { console.log('123'); }
|
上面的代码并不完善
- 首先,change()中的this为undefined,因为Babel开启了严格模式的原因
- 解决:
- 让change可以读取到state
- 改变state中的值
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| class Demo extends React.Component{ constructor(props){ super(props) this.state = { isHot:true } this.change=this.change.bind(this); }
render(){ const {isHot} = this.state return <h1 onClick={this.change}>今天天气很{isHot ?"炎热":"凉爽"}</h1> }
change() {
this.setState({isHot:!isHot}) console.log('修改天气'); console.log(this); } };
|
- 将change()放在了Demo里面,这就使得组件实例对象上也有了change这个方法
- 通过在构造器中
this.change=this.change.bind(this);改变其this指向
- 这时候的change()就可以读取到state并改变它的值
- 注意:
- state的值无法通过=的形式进行改变
- 调用
React.Component原型上的setStateAPI进行更新状态(数据)
this.setState({isHot:!isHot})另外数据是合并而不是替换
精简版:
扩充一个概念,当你在class中写入a=0的时候,这个类的实例化对象上就多了一个a属性,值为0
根据这个扩充就可以对上文代码进行简化,state就可以直接以赋值的写法写入,而change则通过赋值语句的写法+箭头函数来定义
之所以使用箭头函数,是因为箭头函数中的this是寻找它父级的this,也就是Demo实例对象
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| class Demo extends React.Component{ state = {isHot:true}
render(){ const {isHot} = this.state return <h1 onClick={this.change}>今天天气很{isHot ?"炎热":"凉爽"}</h1> }
change =()=> { this.setState({isHot:!this.state.isHot}) } };
|
setState中传入对象
2.props
用于接收组件标签传递的参数
当数据不存在state中,而是通过<Demo name="jerry" age="19" sex="男"/>传递的参数,就可以使用props进行接收
在vue中props用于父组件向子组件传递数据
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| class Demo extends React.Component{ render(){ console.log(this.props); const {name,age,sex}=this.props; return ( <ul> <li>姓名:{name}</li> <li>性别:{age}</li> <li>年龄:{sex}</li> </ul> ) } };
ReactDOM.render(<Demo name="jerry"age="19"sex="男"/>,document.getElementById('root1')); ReactDOM.render(<Demo name="tom" age="18" sex="女"/>, document.getElementById('root2')); const p={ name:'老刘', age:18, sex:'女' } ReactDOM.render(<Demo {...p}/>, document.getElementById('root3'));
|
对传递的数据进行限制:
为Demo组件实例添加静态属性
- propTypes 对标签属性进行类型,必要性的限制
name: PropTypes.string.isRequired
- defaultProps 指定的默认的标签属性值
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| class Demo extends React.Component { constructor(props){ console.log(props); super(props) } render() { const { name, age, sex } = this.props; return ( <ul> <li>姓名:{name}</li> <li>性别:{sex}</li> <li>年龄:{age + 1}</li> </ul> ) } static propTypes = { name: PropTypes.string.isRequired, sex: PropTypes.string, age: PropTypes.number, spack: PropTypes.func } static defaultProps = { sex: '不男不女', age: 100 } };
|
函数式组件使用props
因为函数式组件是可以传递参数的所以可以使用props,正好迎合了它的作用
但是propTypes和defaultProps就要写到外面进行调用了
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| function Demo(props) { const {name,age,sex} = props return ( <ul> <li>姓名:{name}</li> <li>性别:{age}</li> <li>年龄:{sex}</li> </ul> ) }
Demo.propTypes = { name: PropTypes.string.isRequired, sex: PropTypes.string, age: PropTypes.number, spack: PropTypes.func } Demo.defaultProps = { sex: '不男不女', age: 100 }
ReactDOM.render(<Demo name="tom" age={18} sex="女"/>, document.getElementById('root2'));
|
3.ref
字符串型的ref(不推荐)
这个ref和vue中的ref一样,也是获取元素
- ref标识命名的DOM元素会被放到实例对象的refs中
- 通过
this.refs就可以得到这些DOM元素
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| class Demo extends React.Component{ showData=()=>{ const {input1} = this.refs console.log(input1.value); } showData2=()=>{ const {input2} = this.refs console.log(input2.value); } render(){ return( <div> <input ref="input1" type="text" placeholder="点击按钮提示数据"/> <button onClick={this.showData}>点我提示左侧信息</button> <input onBlur={this.showData2} ref="input2" type="text" placeholder="失去焦点提示数据"/> </div> ) } }; ReactDOM.render(<Demo/>, document.getElementById('root'));
|
回调函数的ref
ref中是一个回调函数 surrentNode=>this.input1 = surrentNode 简写形式
传递的参数surrentNode代表这个节点本身
以下是内敛函数的写法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| class Demo extends React.Component{ showData=()=>{ const {input1} = this console.log(input1.value); } render(){ return( <div> <input ref={surrentNode=>this.input1 = surrentNode} type="text" placeholder="点击按钮提示数据"/> <button onClick={this.showData}>点我提示左侧信息</button> </div> ) } }; ReactDOM.render(<Demo/>, document.getElementById('root'));
|
回调函数的写法:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| class Demo extends React.Component{ showData=()=>{ const {input1} = this console.log(input1.value); } saveInput=(c)=>{ this.input1 = c; console.log('@',c); } render(){ return( <div> <input ref={this.saveInput} type="text" placeholder="点击按钮提示数据"/> {/*<input ref={surrentNode=>this.input1 = surrentNode} type="text" placeholder="点击按钮提示数据"/>*/} <button onClick={this.showData}>点我提示左侧信息</button> </div> ) } }; ReactDOM.render(<Demo/>, document.getElementById('root'));
|
createRef(官方最推荐)
myRef=React.createRef()属于专人专用,只可存放一个节点
有几个要使用的DOM就声明几个myRef=React.createRef()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| class Demo extends React.Component{ myRef=React.createRef() myRef2=React.createRef()
showData=()=>{ console.log(this.myRef.current.value); } showData2=()=>{ console.log(this.myRef2.current.value); } render(){ return( <div> <input ref={this.myRef} type="text" placeholder="点击按钮提示数据"/> <button onClick={this.showData}>点我提示左侧信息</button> <input ref={this.myRef2} onBlur={this.showData2} type="text" placeholder="失去焦点提示数据"/> </div> ) } }; ReactDOM.render(<Demo/>, document.getElementById('root'));
|
React中事件处理
(1)通过onXxx属性
通过onXxx属性指定事件处理函数(注意大小写)
- React使用的是自定义(合成)事件,而不是使用的原生DOM事件一为了更好的兼容性
- React中的事件是通过事件委托方式处理的(委托给组件最外层的元素)一为了的高效
(2)event.target
得到发生事件的DOM元素对象———————不要过度使用ref
应用于如果你想获取的元素就是你绑定事件的元素,那么就可以使用event.target
收集表单数据库
包含表单的组件分类
- 受控组件
- 非受控组件
非受控组件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| class Login extends React.Component{ handleSubmit=(event)=>{ event.preventDefault(); const {username,password}=this console.log(username.value,password.value); } render(){ return( <form action="http://www.baidu.com" onSubmit={this.handleSubmit}> 用户名:<input ref={c=>this.username=c} type="text" name="username"/> 密码:<input ref={c=>this.password=c} type="password" name="password"/> <button>登录</button> </form> ) } }; ReactDOM.render(<Login/>, document.getElementById('root'));
|
受控组件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| class Login extends React.Component{ static={ username:"", password:"" }
userName=(ev)=>{ this.setState({username:ev.target.value}) } passWorl=(ev)=>{ this.setState({password:ev.target.value}) }
handleSubmit=(ev)=>{ ev.preventDefault(); const {username,password} = this.state console.log(username,password); } render(){ return( <form action="http://www.baidu.com" onSubmit={this.handleSubmit}> 用户名:<input onChange={this.userName} type="text" name="username"/> 密码:<input onChange={this.passWorl} type="password" name="password"/> <button>登录</button> </form> ) } }; ReactDOM.render(<Login/>, document.getElementById('root'));
|
高阶函数和函数柯里化
高阶函数:如果一个函数符合下面2个规范中的任何一个,那该函数就是高阶函数。
若A函数,接收的参数是一一个函数,那么A就可以称之为高阶函数。
若A函数,调用的返回值依然是一“个函数,那么A就可以称之为高阶函数。
- 常见的高阶函数有: Promise,setTimeout.,arr. map()等等
函数的柯里化:通过函数调用继续返回函数的方式,实现多次接收参数最后统一处理的函数编码形式。
对于以上受控组件函数柯里化写法:
不再用this.userName或者this.passWorl这种分开写法,而是同意获取数据
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| class Login extends React.Component{ state={ username:"", password:"" } saveFromData=(dataType)=>{ return (ev)=>{ this.setState({[dataType]:ev.target.value}) } } handleSubmit=(ev)=>{ ev.preventDefault(); const {username,password} = this.state console.log(username,password); } render(){ return( <form action="http://www.baidu.com" onSubmit={this.handleSubmit}> 用户名:<input onChange={this.saveFromData('username')} type="text" name="username"/> 密码:<input onChange={this.saveFromData('password')} type="password" name="password"/> <button>登录</button> </form> ) } }; ReactDOM.render(<Login/>, document.getElementById('root'));
|
对于以上受控组件不适用函数柯里化写法:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| class Login extends React.Component { state = { username: "", password: "" } saveFromData = (dataType, ev) => { this.setState({ [dataType]: ev.target.value }) }
handleSubmit = (ev) => { ev.preventDefault(); const { username, password } = this.state console.log(username, password); } render() { return ( <form action="http://www.baidu.com" onSubmit={this.handleSubmit}> 用户名:<input onChange={ev=>this.saveFromData('username',ev)} type="text" name="username" /> 密码:<input onChange={ev=>this.saveFromData('password',ev)} type="password" name="password" /> <button>登录</button> </form> ) } }; ReactDOM.render(<Login />, document.getElementById('root'));
|
其实就是将onchange本身变成一个函数,函数内则是调用.saveFromData('username',ev)的方法
组件的生命周期
理解:
- 组件对象从创建到死亡它会经历特定阶段
- React 组件对象包含一系列勾子函数(生命周期回调函数),在特定的时刻调用
- 我们在定义组件时, 在特定的生命周期回调函数,中做特定的工作
其实和vue中的生命周期大致一样的思路
生命周期流程图(旧)

1.初始化状态
由ReactDOM.render()触发——初次渲染
- constructor( ) 构造器
- componentWillMount ( ) 组件将要挂载的钩子
- render( ) 初始化渲染 状态更新后被调用
- componentDidMount( ) 组件挂载完毕的钩子
- 一般在这个钩子中做一些初始化的事,例如,开启定时器,发网络请求,订阅消息
2.更新阶段
由组件内部this . setSate()或父组件重新render触发
- shouldComponentUpdate() 控制组件更新的“阀门” return true开启阀门
- componentWillUpdate() 组件将要更新的钩子
- render() 初始化渲染 状态更新后被调用
- componentDidUpdate( ) 组件更新完毕钩子
- 可以传递参数
- 1.组件身上传递的props
- 2.组件更新之前state数据
- 3.在新的生命周期中接收
getSnapshotBeforeUpdate的返回值
3.卸载组件
由ReactDOM. unmountComponentAtNode( )触发
- componentWillUnmount( ) 组件将要销毁的钩子
- 一般在这个钩子中做一些收尾的事,例如,关闭定时器,取消订阅消息
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
| class Demo extends React.Component { constructor(props) { console.log('Count-constructor'); super(props) this.state = { count: 1 } } add = () => { const { count } = this.state this.setState({ count: count + 1 }) } force = () => { this.forceUpdate() } remove = () => { ReactDOM.unmountComponentAtNode(document.getElementById('root')) } componentWillMount() { console.log('Count-componentWillMount将要挂载'); } componentDidMount() { console.log('Count-componentDidMount挂载完毕'); } componentWillUnmount() { console.log('Count-componentWillUnmount将要销毁'); } shouldComponentUpdate() { console.log('Count-shouldComponentUpdate组件更新阀门'); return true } componentWillUpdate() { console.log('Count-componentWillUpdate将要更新'); } componentDidUpdate() { console.log('Count-componentDidUpdate更新完毕'); } render() { console.log('Count-Render更新中'); const { count } = this.state return ( <div> <h2>当前求和{count}</h2> <button onClick={this.add}>点我+1</button> <button onClick={this.remove}>点我卸载组件</button> <button onClick={this.force}>不更改任何状态中的数据,强制更新</button> </div> ) } };
class A extends React.Component { state = { carName: '奔驰' } changeCar = () => { this.setState({ carName: '奥托' }) } render() { return ( <div> <div>A</div> <button onClick={this.changeCar}>换车</button> <B carName={this.state.carName} /> </div> ) } } class B extends React.Component { componentWillReceiveProps(props) { console.log('B-componentWillReceiveProps', props); } render() { return ( <div>B,接收到的车是{this.props.carName}</div> ) } } ReactDOM.render(<A />, document.getElementById('root'))
|
生命周期流程图(新)
新的生命周期中对旧版的三个Will钩子进行了删除,添加了新的钩子
下文加粗

1.初始化阶段:
由ReactDOM. render()触发—初次渲染
constructor( )
getDerivedStateFromProps
- 此钩子不常用,其可以接收props和state,return的值可以是props或者自定义值
render()
componentDidMount() =====> 常用
一般在这个钩子中做一些初始化的事,例如:开启定时器、发送网络请求、订阅消息
2.更新阶段:
由组件内部this . setSate( )或父组件重新render触发
- getDerivedStateFromProps
- shouldComponentUpdate()
- render()
- getSnapshotBeforeUpdate()
- 此钩子是组件即将更新完毕触发的,它可以获取到组件的旧状态,并将状态return出去由
componentDidUpdate接收(第三个参数)
- componentDidUpdate()
- 有三个参数
- 1.组件身上传递的props
- 2.组件更新之前state数据
- 3.在新的生命周期中接收
getSnapshotBeforeUpdate的返回值
3.卸载组件:
由ReactDOM. unmountComponentAtNode( )触发
- componentWillUnmount( ) =====>常用
一般在这个钩子中做一些收尾的事,例如:关闭定时器、取消订阅消息
总结:
重要的勾子
- render: 初始化渲染或更新渲染调用
- componentDidMount: 开启监听,发送ajax请求
- componentWillUnmount: 做一些收尾工作, 如:清理定时器
即将废弃的勾子
- componentWillMount
- componentWilReceivePropse
- componentWillUpdatee
现在使用会出现警告,下一个大版本需要机上UNSAFE_前缀才能使用,以后可能会被彻底
废弃,不建议使用。
diffing算法和key的作用
这个diffing算法和vue中的新旧虚拟dom对比是一样的
1.虚拟DOM中key的作用
key是虚拟DOM对象的标识,当中的数据发生改变时,Vue会根据【新数据】生成【新的虚拟DOM】,随后Vue进行【虚拟DOM】与【旧虚拟DOM】的差异进行比较。
2.比较规则
a.
旧DMO中找到了与新虚拟DOM相同的key:
- 若虚拟DOM中内容没有改变,直接使用之前的真实DOM!
- 若虚拟DOM中内容变了,则生成新的真实DOM,随后替换掉页面中之前的真实DOM
b.
旧虚拟DOM中未找到与新虚拟DOM相同的key
- 创建新的真实DOM,随后渲染到页面中
3.用index作为key可能会引发的问题
若对数据进行:逆序添加,逆序删除等破坏顺序操作:
会产生没有必要的真实DOM更新===>界面效果没问题,但是效率低
如果结构中还包含输入类的DOM:
会产生错误的DOM更新===>界面有问题
4.开发中如何选择key
- 最好使用每条数据的唯一标识作为key,比如id,手机号,身份证号,学号等唯一值。
- 如果不存在对数据的逆序添加,逆序删除等破坏顺序操作,仅用于渲染列表用于展示,使用index作为key是没有问题的。
React脚手架
使用create-react-app创建react应用
react脚手架
- xxx 脚手架:用来帮助程序员快速创建一个基于xxx库的模板项目
- 包含了所有需要的配置 (语法检查、jsx编译、devServer..)
- 下载好了所有相关的依赖
- 可以直接运行一个简单效果
- react 提供了一个用于创建 react项目的脚手架库: create-react-app
- 项目的整体技术架构为: react + webpack + es6 + eslinte
- 使用脚手架开发的项目的特点: 模块化,组件化,工程化
创建项目并启动
第一步,全局安装: npm install -g create-react-app
第二步,切换到想创项目的目录,使用命令: create-react-app hello-react
第三步,进入项目文件夹: cd hello-react
第四步,启动项目: npm start
查看脚手架版本create-react-app --version
react中的组件文件后缀可以改为jsx
css模块化
当两个组件中有重名类名的话,可以通过为css文件命名index.module.css并且引入方式变为
import hello from './index.module.css'就可以使该css仅在当前组件适用
1 2 3 4 5 6 7 8 9 10
| import hello from './index.module.css' class Hello extends Component { render() { return ( <div> <h1 className={hello.title}>Hello World</h1> </div> ); } }
|
插件推荐

TodoList项目
拆分组件、实现静态组件,注意: className、 style={{}}的写法
动态初始化列表,如何确定将数据放在哪个组件的state中?
关于父子之问通信:
[父组件] 给 [子组件]传递数据:通过props传递
[子组件] 给 [父组件]传递数据:通过props传递,要求父提前给子传递一个函数
注意defaultChecked和checked的区别,类似的还有: defaultValue 和value
状态在哪里,操作状态的方法就在哪里
React_ajax
使用axios发送ajax请求
安装 yarn add axios
请求的url地址的端口为你代理服务器的端口,而且加上api来区分适用于下文第二种方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| getStudents=()=>{ axios.get('http://localhost:3000/api1/students').then( response=>{ console.log('成功',response.data); }, error=>{ console.log('失败',error); } ) } getCars=()=>{ axios.get('http://localhost:3000/api2/cars').then( response=>{ console.log('成功',response.data); }, error=>{ console.log('失败',error); } ) }
|
React代理服务器
方法一:
在package.json中追加如下配置
1
| "proxy":"http://localhost:5000"
|
说明:
- 优点:配置简单,前端请求资源时可以不加任何前缀。
- 缺点:不能配置多个代理。
- 工作方式:上述方式配置代理,当请求了300不存在的资源时,那么该请求会转发给5000 (优先匹配前端资源)
方法二:
- 第一步:创建代理配置文件
1
| 在src文件夹创建配置文件:src/setupProxy.js
|
- 编写
setupProxy.js配置具体代理规则:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| const { createProxyMiddleware } = require("http-proxy-middleware"); module.exports = function(app){ app.use( createProxyMiddleware('/api1',{ target:'http://localhost:5000', changeOrigin:true, pathRewrite:{'^/api1':''} }), createProxyMiddleware('/api2',{ target:'http://localhost:5001', changeOrigin:true, pathRewrite:{'^/api2':''} }), ) }
|
消息订阅与发布机制
- 工具库:
PubSubJS
- 下载:
npm install pubsub-js --save
- 使用:
import PubSub from 'pubsub-js' 引入
PubSub.subscribe('delete',function(data){}); 收数据的组件订阅消息
PubSub.publish('delete', data) 发数据的组件发布消息
收数据的组件
1 2 3 4 5 6 7 8 9 10 11
|
componentDidMount(){ this.token = PubSub.subscribe('change',(msg,data)=>{ this.setState(data) }) } componentWillUnmount(){ PubSub.unsubscribe(this.token); }
|
发送数据的组件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| search=()=>{ const {keyWordElement:{value}}=this PubSub.publish('change',{isFirst:false,isLoading:true}) axios.get(`https://api.github.com/search/users?q=${value}`).then( (res)=>{ PubSub.publish('change',{isFirst:false,users:res.data.items,isLoading:false}) }, (error)=>{ console.log('失败了'); PubSub.publish('change',{isFirst:false,err:error.message}) } ) }
|
Reack路由
对SPA应用的理解
- 单页 Web应用(single page web application, SPA)
- 整个应用只有一 个完整的页面。
- 点击页面中的导航链接不会刷新页面,只会做页面的局部更新。
- 数据需要通过 ajax请求获取
路由的理解
什么是路由?
- 一个路由就是一组映射关系(key - value)
- key 为路径value可能是function或component
路由分类
后端路由:
- 理解: value是function,用于处理客户端提交的请求
- 工作过程: 服务器接收到一个请求时,根据请求路径找到匹配的函数来处理请求返回响应数据。
前端路由:
- 理解: value是component,用于展示页面内容。
- 工作过程: 当浏览器的路径改变时,对应的组件就会显示。
react-router-dom的理解。
- react的一个插件库。
- 专门用来实现一个SPA应用。
- 基于react的项目基本都会用到此库。
原名应该是react-router,这里的dom是专门给web工作人员使用的
中文文档
路由基本使用
路由组件和一般组件
- 写法不同:
- 一般组件:
<Demo>
- 路由组件:
<Router path="/demo" component={Dome}/>
- 存放位置不同:
- 一般组件:
components
- 路由组件:
pages
- 接收到的props不同
- 一般组件:写组件标签时传递了什么,就能收到什么
- 路由组件:接收到三个固定属性
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| history: go:f go(n) goBack:f goBack() goForward:f goForward() push:f pus(path,state) replace:f replace(path,state) location: pathname:"/about" serach:"" state:undefined match: params:{} path:"/about" url:"/about"
|
Link/Route/BrowserRouter
- 明确好界面中的导航区、展示区
- 导航区的a标签改为Link标签
<Link to="/xxx" >Demo</Link>
- 展示区写Route标签进行路径的匹配
<Route path='/xxx’component={Demo}/>
<App/>的最外侧包裹了一个
<BrowserRouter>或</HashRouter>
- 路由组件放置在pages文件
这里的BrowserRouter是最常用的一种连接跳转,还有一种叫HashRouter
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| <div> <div className="row"> <div className="col-xs-offset-2 col-xs-8"> <div className="page-header"><h2>React Router Demo</h2></div> </div> </div> <div className="row"> <div className="col-xs-2 col-xs-offset-2"> <div className="list-group"> {/* 原生heml中靠a跳转不同页面 */} {/* <a className="list-group-item active" href="./about.html">About</a> <a className="list-group-item" href="./home.html">Home</a> */} {/* 在react中靠路由链接实现切换组件-编写路由链接 */} <Link className="list-group-item" to="/about">About</Link> <Link className="list-group-item" to="/home">Home</Link> </div> </div> <div className="col-xs-6"> <div className="panel"> <div className="panel-body"> {/* 注册路由 */} <Route path="/about" component={About}/> <Route path="/home" component={Home}/> </div> </div> </div> </div> </div>
|
入口文件:
1 2 3 4 5
| root.render( <BrowserRouter> <App /> </BrowserRouter> );
|
NavLink
要想实现点击某个tab,可以实现添加样式的效果,需要使用到NavLink这个标签替换link标签,并且使用activeClassName=''指定添加的类名
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| ...... import {NavLink,Route} from 'react-router-dom' ...... <div className="list-group"> {} { } {} <NavLink activeClassName='found' className="list-group-item" to="/about">About</NavLink> <NavLink activeClassName='found' className="list-group-item" to="/home">Home</NavLink> </div> ......
|
关于对NavLink的封装
上述代码中的NavLink的重复性过高,可以对其进行封装
将变化的属性通过props传递,这里有个扩展内容,标签体中的内容也可以通过props传递,它会自动将内容放到children这个属性中,通过this.props.children可以获取到标签体内容
1 2 3 4
| ... <MyNavLink to='/about'>About</MyNavLink> <MyNavLink to='/home'>Home</MyNavLink> ...
|
1 2 3 4 5 6 7
| ... render() { return ( <NavLink activeClassName='found' className="list-group-item" {...this.props}></NavLink> ) } ...
|
Switch
1 2 3 4 5 6
| ... {} <Route path="/about" component={About}/> <Route path="/home" component={Home}/> <Route path="/home" component={Test}/> ...
|
如果Route中的path有重复的路径,他会匹配所有的匹配路径,从上往下依次寻找匹配的路径
如果想达到一对一的关系就可以使用Switch标签包裹,这时候就只会匹配最上面匹配的组件
1 2 3 4 5 6 7 8
| ... {} <Switch> <Route path="/about" component={About}/> <Route path="/home" component={Home}/> <Route path="/home" component={Test}/> </Switch> ...
|
解决样式丢失
1.路径引入
在引入css样式的路径上不使用.而是使用%PUBLIC_URL%或者省略.
1 2
| <link rel="stylesheet" href="%PUBLIC_URL%/css/bootstrap.css"> <link rel="stylesheet" href="/css/bootstrap.css">
|
2.HashRouter标签
使用<HashRouter></HashRouter>包裹就可以避免路径的改变造成样式丢失。但是会在url中加上一个#号,#后面的被称为hash(哈希)值,其不会被发送给服务器
模糊匹配与精准匹配
- 默认使用的是模糊匹配(简单记:**[输入的路径]必须包含要[匹配的路径]**,且顺序要一致
- 开启严格匹配:
<Route exact={true} path="/about" component={About}/>
- 严格匹配不要随便开启,需要再开,有些时候开启会导致无法继续匹配二级路由
1 2 3 4 5 6 7 8 9
| ... <MyNavLink to='/about'>About</MyNavLink> <MyNavLink to='/home'>Home</MyNavLink> ... <Switch> <Route exact path="/about" component={About}/> <Route exact path="/home" component={Home}/> </Switch> ...
|
Redirect的使用
- 一般写在所有路由注册的最下方,当所有路由都无法匹配时,跳转到Redirect指定的路由
- 具休编码:
1 2 3 4 5 6 7
| ... <Switch> <Route path="/about" component={About}/> <Route path="/home" component={Home}/> <Redirect to="/about"/> </Switch> ...
|
默认情况下,你的url地址端口号后面虽然什么也没跟,其实他是有一个隐藏的/这个/就会和Route中的路径进行匹配比较,但是呢又找不到所以会显示空。
有了Redirect这个内置标签,就可以让其默认匹配到to="/about"相当于一个兜底的
嵌套路由
- 注册组路由时要加上父路由的path值
- 路由的匹配是按照注册路由的顺序进行的
├─components
│ ├─Header
│ ├─MyNavLink
│ └─Test
└─pages
├─About
└─Home
├─Message
└─News
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <div> <ul className="nav nav-tabs"> <li> <MyNavLink to="/home/news">News</MyNavLink> </li> <li> <MyNavLink to="/home/message">Message</MyNavLink> </li> </ul> <Switch> <Route path="/home/news" component={News}></Route> <Route path="/home/message" component={Message}></Route> <Redirect to="/home/news"/> </Switch> </div>
|
向路由组件传递参数
1.params参数
- 路由链接(携带参数):
<link to='/dome/test/tom/18'>详情</link>
- 注册路由(声明接收):
<Route path="/demo/test/:name/:age" components={Test}/>
- 接收参数:
const {id,title} = this.props.match.params
这种传递是将数据存放在url路径后面以/分割的方式,当然也有很多注意点,比如
- 声明接收的标签要使用
/:id/:title进行占位和express的那种有点相像
1 2
| {} <Route path="/home/message/detail/:id/:title" component={Detail}/>
|
接收数据的组件this.props上存放如下:

2.search参数
- 路由链接(携带参数):
<Link to='/demo/test?name=tom&age=18'}>详情</Link>
- 注册路由(无需声明,正常注册即可):
<Route path="/demo/test" component={Test}/>
- 接收参数:
const {search} = this.props.1ocation
- 备注:获取到的
search是ur1encoded编码字符串,需要借助querystring解析
传递部分:
1 2 3 4 5
| {} <Link to={`/home/message/detail/?id=${msgObj.id}&title=${msgObj.title}`}>{msgObj.title}</Link> ...... {} <Route path="/home/message/detail" component={Detail}/>
|
接收部分:
因为search接受的参数没有像params那样自动转换为对象,这里我们使用一个插件解决
- 安装
yarn add query-string
- 引入
import qs from 'query-string'
- 使用
qs.parse(值) 这里面的值指的是 q=1&a=2 这种
1 2 3
| const {search} = this.props.location; const {id,title} = qs.parse(search.slice(1))
|

3.state参数
- 路由链接(携带参数):
<Link to={{path: '/demo/test',state:{name:'tom',age:18}}>详情</Link>
- 注册路由(无需声明,正常注册即可):
<Route path="/demo/test" component={Test}/>
- 接收参数:
this.props.1ocation.state
- 备注:刷新也可以保留住参数
传递部分:
1 2 3 4 5
| {} <Link to={{pathname:'/home/message/detail',state:{id:msgObj.id,title:msgObj.title}}}>{msgObj.title}</Link> ...... {} <Route path="/home/message/detail" component={Detail}/>
|
接收部分:
1 2 3
|
const {id,title} = this.props.location.state || {}
|

push与replace模式
首先先了解一下浏览器历史记录执行原理。浏览器的历史记录执行是以栈的形式,这个栈中存放着你的历史记录,默认是push模式,比如你点击了a连接跳转页面,这个行为就会被push到栈中,堆叠起来。
当模式变成replace模式,那么你点击的行为就会替换栈中的最上方的历史记录。
切换方式
1 2
| {} <Link replace={true} to={{pathname:'/home/message/detail',state:{id:msgObj.id,title:msgObj.title}}}>{msgObj.title}</Link>
|
编程式路由导航
借助this.prosp.history对象上的API对操作路由跳转、前进、后退
- this.prosp.history.push( )
- this.prosp.history.replace( )
- this.prosp.history.goBack( )
- this.prosp.history.goForward( )
- this.prosp.history.go( )
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| ... replaceShow=(id,title)=>{
this.props.history.replace(`/home/message/detail`,{id,title}); } pushShow=(id,title)=>{
this.props.history.push(`/home/message/detail`,{id,title}); }
back=()=>{ this.props.history.goBack(); } forword=()=>{ this.props.history.goForward(); } go=()=>{ this.props.history.go(2); } ...
|
withRouter的使用
- withRouter可以加工一般组件,让一般组件具备路由组件所特有的API
- withRouter的返回值是一个新的组件
这部分的代码其实是一个一般组件,一般组件不具备路由组件身上的方法,所以可以通过react自带的withRouter来实现转换。
在暴露这个组件的时候使用export default withRouter(Header)将一般组件转换为路由组件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| import React, { Component } from 'react' import {withRouter} from 'react-router-dom'
class Header extends Component { back=()=>{ this.props.history.goBack() } forword=()=>{ this.props.history.goForward(); } go=()=>{ this.props.history.go(2); } render() { return ( <div className="row"> <button onClick={this.back}>回退</button> <button onClick={this.forword}>前进</button> <button onClick={this.go}>GO</button> </div> ) } } export default withRouter(Header)
|
BrowserRouter与HashRouter的区别
- 底层原理不一-样:
BrowserRouter使用的是H5的history API,不兼容IE9及以下版本。
HashRouter使用的是URL的哈希值。
- url表现形式不一样
BrowserRouter的路径中没有#,例如: localhost: 3000/demo/test
HashRouter的路径包含#,例如: localhost: 3000/#/demo/test
- 刷新后对路由state参数的影响
(1) BrowserRouter没有任何影响,因为state 保存在history对象中。
(2) HashRouter刷新后会导致路由state参数的丢失
- 备注: HashRouter 可以用于解决一些路径错误相关的问题。
React UI组件库
流行的开源React UI组件库
material-ui(国外)
- 官网: 链接
- github: 链接
ant-design(国内蚂蚁金服)
- 官网: 链接
- Github: 链接
基本使用
这里以ant为例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| import React, { Component } from 'react'
import {Button,DatePicker,ConfigProvider} from 'antd'
import 'antd/dist/antd.css'
import zhCN from 'antd/es/locale/zh_CN';
import { GithubOutlined } from '@ant-design/icons'
export default class App extends Component { onChange = (date, dateString) => { console.log(date, dateString); }; render() { return ( <div> <h1>Hello World</h1> <Button type="primary">Primary Button</Button> <GithubOutlined style={{fontSize:'50px'}}/> <ConfigProvider locale={zhCN}> <DatePicker onChange={this.onChange} /> </ConfigProvider> </div> ) } }
|

redux
redux理解
学习文档。
- 英文文档: https://redux.js.org/
- 中文文档: http://www.redux.org.cn/
- Github: https://github.com/reactjs/redux
redux是什么
- redux是一个专门用于做状态管理的IS库(不是react插件库)
- 它可以用在 react, angular, vue等项目中,但基本与react配合使用.
- 作用: 集中式管理react应用中多个组件共享的状态
什么情况下需要使用redux
- 某个组件的状态, 需要让其他组件可以随时拿到(共享)。
- 一个组件需要改变另-个组件的状态(通信) 。
- 总体原则: 能不用就不用,如果不用比较吃力才考虑使用。
原理图

redux的三个核心概念
action
- 动作的对象
- 包含2个属性
- type:标识属性,值为字符串,唯一,必要属性
- data:数据属性,值类型任意,可选属性
- 例子:{type:’ADD_STUDENT’,data:{name:’tom’,age:18}}
reducer
- 用于初始化状态,加工状态
- 加工时,根据旧的state和action,产生新的state的纯函数
store
- 将state,action,reducer联系在一起的对象
- 如何得到此对象?
import {createStore} from 'redux'
import reducer from './reducers'
const store = createStore(reducer)
- 此对象的功能?
getState(): 得到state
dispatch(action): 分发action,触发reducer调用,产生新的state
subscribe(listener): 注册监听,当产生了新的state时,自动调用
安装redux
安装:yarn add redux 或者 npm i redux
redux使用
迷你版redux
新建文件redux/store.js
- 该文件专门用于暴露一个store对象,整个应用只有一个store对象
- 引入createStore专门用于创建redux中最为核心的store对象
1 2 3 4 5 6 7 8 9
|
import { legacy_createStore as createStore } from "redux";
import countReducer from './count_reducer'
export default createStore(countReducer);
|
新建文件redux/count_reducer.js
- 该组件用于创建一个为Count组件服务的reducer。reducer的本质就是一个函数
- reducer函数会接到连个参数分别是:
- 之前的状态(preState)
- 动作对象(action)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| const initState = 0; export default function countReducer(preState = initState,action) { const {type,data} = action; switch (type) { case 'increment': return preState + data; case 'decrement': return preState - data; default: return preState; } }
|
组件文件中
初始化的状态并没有存放在该组件,那么组件该如何调用初始状态
- 使用
store.getState(): 可以获取初始化状态
- 使用
store.dispatch(action): 分发action,触发reducer调用,产生新的state
- action是一个对象{type:’increment’,data:value*1}
- type:用于匹配count_reducer.js中的数据处理
- data:上方文件中action这个对象的属性(其实就是传值)
- 使用
store.subscribe(()=>{}): 监测redux中状态的变化
- 当redux中状态发生变化就会触发其中的函数
- 使用
this.setState({})更新数据即可改变页面
- 进阶版:在index.js入口文件中监测:
store.subscribe(()=>{root.render(<App/>)})
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
| import React, { Component } from 'react'
import store from '../../redux/store';
export default class Count extends Component { state={ carName:'组件自己用的数据(不用在意)' }
increment = ()=>{ const {value} =this.selectNumber store.dispatch({type:'increment',data:value*1}) } decrement = ()=>{ const {value} =this.selectNumber store.dispatch({type:'decrement',data:value*1}) } incrementIfOdd = ()=>{ const {value} =this.selectNumber const count =store.getState() if (count % 2!== 0) { store.dispatch({type:'increment',data:value*1}) } } incrementAsync = ()=>{ const {value} =this.selectNumber setTimeout(() => { store.dispatch({type:'increment',data:value*1}) }, 500); }
render() { return ( <div> <h1>当前求和:{store.getState()}</h1> <select ref={c=>this.selectNumber=c}> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <button onClick={this.increment}>+</button> <button onClick={this.decrement}>-</button> <button onClick={this.incrementIfOdd}>当前求和为奇数再+</button> <button onClick={this.incrementAsync}>异步+</button> </div> ) } }
|
完整版redux
- 新增两个文件:
- count_action.js专门用于创建action对象
- constant.js 放置用于编码疏忽写错action中的type
count_action.js
1 2 3 4 5 6 7 8 9 10 11
|
import {INCREMENT,DECREMENT} from './constant'
export const createIncrementAction=(data)=> { return {type:INCREMENT,data} }
export const createDecrementAction=(data)=> { return {type:DECREMENT,data} }
|
constant.js
1 2 3 4 5 6
|
export const INCREMENT = 'increment';
export const DECREMENT = 'decrement';
|
异步action
明确:延迟的动作不想交给组件自身,想交给action
何时需要异步action:想要对状态进行操作,但是具体的数据靠异步任务返回(非必须)
具体编码:
yarn add redux-thunk, 并配置在store中
- 创建action的函数不再返回一般对象, 而是一个函数, 该函数中写异步任务。
- 异步任务有结果后,分发一个同步的action去真正操作数据。
备注:异步action不是必须要写的,完全可以自己等待异步任务的结果了再去分发同步action.
count_action.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
import {INCREMENT,DECREMENT} from './constant'
export const createIncrementAction=(data)=> { return {type:INCREMENT,data} }
export const createDecrementAction=(data)=> { return {type:DECREMENT,data} }
export const createIncrementAsyncAction=(data,time)=>{ return (dispatch)=>{ setTimeout(() => { dispatch(createIncrementAction(data)) },time); } }
|
store.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
import { legacy_createStore as createStore,applyMiddleware } from "redux";
import thunk from 'redux-thunk';
import countReducer from './count_reducer'
export default createStore(countReducer,applyMiddleware(thunk));
|
react-redux
模型图:

基本使用:
这个比较难理解,首先呢,App组件中存放的不再是原本的CountUI组件,而是被Count包裹的容器组件,但这个容器组件不是人为制作的,只通过第三方包yarn add react-redux生成的,上代码:
新建coutainers文件夹,存放Count组件
其实就是app组件中的Count不再是components文件中的UI组件Count,而是经过包装的containers文件下的Count容器组件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
import CountUI from '../../components/Count'
import { createIncrementAction, createDecrementAction, createIncrementAsyncAction } from '../../redux/count_action'
import {connect} from 'react-redux';
const mapStateToProps = (state)=>{ return {count:state} }
const mapDispatchToProps = (dispatch)=>{ return { add:(number)=>{ dispatch(createIncrementAction(number)) }, jian:(number)=>{ dispatch(createDecrementAction(number)) }, addAsync:(number,time)=>{ dispatch(createIncrementAsyncAction(number,time)) } } }
export default connect(mapStateToProps,mapDispatchToProps)(CountUI);
|
但是UI组件该如何拿到初始数据呢?,可以看图,容器组件和UI组件间通过props传递数据,但是我们又没法通过常规手法传递,但同时官方提供了方法:
- 首先容器组件要获得store
- 以下代码就可以使得容器组件获得store,那么容器组件中的UI组件不就可以获取到store了吗。(但其实状态是在
count_reducer中的)
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| import React, { Component } from 'react' import Count from './containers/Count'
import store from './redux/store' export default class App extends Component { render() { return ( <div> {/* 给容器组件传递store */} <Count store={store}/> </div> ) } }
|
- 官方提供的容器组件与UI组件通信的方式
connect(mapStateToProps,mapDispatchToProps)(CountUI);
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
const mapStateToProps = (state)=>{ return {count:state} }
const mapDispatchToProps = (dispatch)=>{ return { add:(number)=>{ dispatch(createIncrementAction(number)) }, jian:(number)=>{ dispatch(createDecrementAction(number)) }, addAsync:(number,time)=>{ dispatch(createIncrementAsyncAction(number,time)) } } }
|
这里面不用store点调用也不用引入是因为已经通过App组件引入过了
- UI组件要想使用这些方法可是直接在
this.props中找到
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| increment = ()=>{ const {value} =this.selectNumber this.props.add(value*1); }
decrement = ()=>{ const {value} =this.selectNumber this.props.jian(value*1); }
incrementIfOdd = ()=>{ const {value} =this.selectNumber if (this.props.count%2!==0) { this.props.add(value*1) } }
incrementAsync = ()=>{ const {value} =this.selectNumber this.props.addAsync(value*1,500) }
...
<h1>当前求和:{this.props.count}</h1>
|
coutainers文件夹中Count容器组件精简写法:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
import CountUI from '../../components/Count' import { createIncrementAction, createDecrementAction, createIncrementAsyncAction } from '../../redux/count_action' import {connect} from 'react-redux';
export default connect( state=>({count:state}),
{ add:createIncrementAction, jian:createDecrementAction, addAsync:createIncrementAsyncAction } )(CountUI);
|
优化:
1.不再监测
在redux中还需要在入口文件中监测状态的变化改变页面,但是react-redux中就不需要这样
1 2 3 4 5
| ...
store.subscribe(()=>{root.render(<App />)}) ...
|
2.多个容器组件传递store
实例是一个容器组件,但是当容器组件多了,就需要一个一个传递,非常不银杏。react-redux提供了一个内置方法解决:
- 引入
store
- 引入
react-redux中的Provider
- 使用
Provider包裹App组件
- 这样就会自动监测App组件中的容器组件并向其传递store
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| import React from 'react'
import ReactDOM from 'react-dom/client';
import App from './App'
import store from './redux/store' import {Provider} from 'react-redux'
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render( <Provider store={store}> <App/> </Provider> );
|
3.文件优化
上文中的写法过于臃肿,容器组件和UI组件分开写,为何不整合成一个文件?
可以剪切走UI组件的代码,到容器组件中,不需要分开引入
containers/Count/index.jsx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
| import React, { Component } from 'react'
import { createIncrementAction, createDecrementAction, createIncrementAsyncAction } from '../../redux/count_action'
import {connect} from 'react-redux';
class Count extends Component { state={ carName:'组件自己用的数据(不用在意)' }
increment = ()=>{ const {value} =this.selectNumber this.props.add(value*1); } decrement = ()=>{ const {value} =this.selectNumber this.props.jian(value*1); } incrementIfOdd = ()=>{ const {value} =this.selectNumber if (this.props.count%2!==0) { this.props.add(value*1) } } incrementAsync = ()=>{ const {value} =this.selectNumber this.props.addAsync(value*1,500) }
render() { return ( <div> <h1>当前求和:{this.props.count}</h1> <select ref={c=>this.selectNumber=c}> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <button onClick={this.increment}>+</button> <button onClick={this.decrement}>-</button> <button onClick={this.incrementIfOdd}>当前求和为奇数再+</button> <button onClick={this.incrementAsync}>异步+</button> </div> ) } }
export default connect( state=>({count:state}),
{ add:createIncrementAction, jian:createDecrementAction, addAsync:createIncrementAsyncAction } )(Count);
|
总结:
明确两个概念:
- UI组件:不能使用任何redux的api,只负责页面的呈现、交互等。
- 容器组件:负责和redux通信,将结果交给UI组件。
如何创建一个容器组件一靠react-redux的connect函数
- connect (mapStateToProps , mapDispatchToProps ) (UI组件)
- mapStateToProps:映射状态,返回值是一个对象
- mapDispatchToProps:映射操作状态的方法,返回值是一个对象
备注1:容器组件中的store是靠props传进去的,而不是在容器组件中直接引入
备注2: mapDispatchToProps也可以是一个对象
多组件数据共享
上文中都是一个组件获取redux中的数据或者状态,并不能体现出redux的强大性,我们可以再次定义一个新的组件,让这个组件可以获得到Count组件中的状态,Count也可以获取到这个组件的状态。

创建actions/person.js文件
1 2 3 4 5
| import {ADD_PERSON} from '../constant'
export const createAddPersonAction = personObj =>( {type:ADD_PERSON,data:personObj} )
|
创建reducers/person.js文件
1 2 3 4 5 6 7 8 9 10 11 12 13
| import { ADD_PERSON } from "../constant";
const initState = [{id:'001',name:'tom',age:18}]; export default function personReducer(preState = initState,action) { const {type,data} = action; switch (type) { case ADD_PERSON: return [data,...preState] default: return preState } }
|
改变store文件(重点)
上文中我们仅仅只是使用了一个容器组件,但是这个是多组件共享数据,写法大不相同:
- 引入
combineReducers从redux
- 引入为Person组件服务的reducer
- 汇总所有的reducer变为一个总的reducer
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
import { legacy_createStore as createStore,applyMiddleware,combineReducers } from "redux";
import thunk from 'redux-thunk';
import countReducer from './reducers/reducer'
import personReducer from './reducers/person'
const allReducer = combineReducers({ count:countReducer, person:personReducer });
export default createStore(allReducer,applyMiddleware(thunk));
|
如何获取其他组件的状态?
就拿Person组件为例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| import React, { Component } from 'react'
import {nanoid} from 'nanoid'
import {connect} from 'react-redux'
import {createAddPersonAction} from '../../redux/actions/person'
class Person extends Component { addPerson=()=>{ const name = this.nameNode.value; const age = this.ageNode.value; const personObj={ id:nanoid(), name, age } this.props.add(personObj); this.nameNode.value=''; this.ageNode.value=''; } render() { return ( <div> <h2>我是Person组件,上方组件求和为{this.props.he}</h2> <input ref={c=>this.nameNode=c} type="text" placeholder='输入名字'/> <input ref={c=>this.ageNode=c} type="text" placeholder='输入年龄'/> <button onClick={this.addPerson}>添加</button> <ul> { this.props.peops.map((p)=>{ return <li key={p.id}>{p.name}-----{p.age}</li> }) } </ul> </div> ) } } export default connect( state=>({ peops:state.person, he:state.count }), { add:createAddPersonAction } )(Person)
|
函数式组件获取方式
函数组件我们使用useSelector、useDispatch
函数组件使用useSelector、useDispatch两个Hook来操作store。
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| import { useSelector, useDispatch } from "react-redux"; import { userAgeIncrementAction } from "../store/actions/xxxActions";
funciton Store() { const counter = useSelector((state) => state.counter.value); const age = useSelector((state) => state.user.age); const dispatch = useDispatch();
const userAgeIncremented = () => { dispatch(xxxAction(5)); }; ... }
|
纯函数
一类特别的函数:只要是同样的输入(实参),必定得到同样的输出(返回)
必须遵守以下一些约束
不得改写参数数据。
不会产生任何副作用, 例如网络请求,输入和输出设备
不能调用Date.now()或者Math.random()等不纯的方法
redux 的 reducer 函数必须是一个纯函数
index.ts
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| import ReactDOM from 'react-dom/client'; import { Provider } from 'react-redux'; import App from './App'; import store from './redux/store';
const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement );
root.render( <Provider store={store}> <App /> </Provider> );
|
slice/slice.ts
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| import { createSlice,createAsyncThunk } from "@reduxjs/toolkit";
export var loadPic = createAsyncThunk('weather/loadPic', async () => { return new Promise((resolve:(str:string)=>void,reject)=>{ setTimeout(()=>{ resolve('数据'); },1000) }) });
var counterSlice = createSlice({ name:'counter', initialState:{ value:0 }, reducers:{ incremented:(state)=>{ state.value+=1 }, decremented:(state)=>{ state.value-=1 }, add:(state,action)=>{ state.value+=action.payload; } }, extraReducers:{ [loadPic.pending.type](state,action:any){ console.log('pending',state,action); }, [loadPic.fulfilled.type](state,action:any){ console.log('fulfilled',state,action); state.value+=1; }, [loadPic.rejected.type](state,action:any){ console.log('rejected',state,action); }, } })
export const {incremented,decremented,add} = counterSlice.actions; export default counterSlice.reducer;
|
使用:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| import React from 'react' import { useSelector,useDispatch} from 'react-redux' import { incremented,decremented,add,loadPic } from '../redux/slices/slices'
const Count = () => { const count = useSelector((state:any)=>state.counter.value) const dispatch = useDispatch(); const add=()=>{ dispatch(incremented()) } const del=()=>{ dispatch(decremented()) } const asyncAdd=async()=>{ dispatch<any>(loadPic()) } return ( <div> <h2>当前和:{count}</h2> <button onClick={add}>加一</button> <button onClick={del}>减一</button> <button onClick={asyncAdd}>异步</button> </div> ) } export default Count
|
redux开发者工具
(1)安装:yarn add redux-devtools-extension
(2)store中进行配置
1 2
| import {composeWithDevTools} from 'redux-devtools-extension' const store = createStore(allReducer , composeWithDevTools( applyMiddleware(thunk)))
|
项目打包
当一个react项目完成后该如何上线呢?其实真正的开发中我们只需要将项目打包后交给后端即可,这里我们使用一个第三方包serve来临时搭建一台服务器。
安装:npm i serve -g
- 先执行打包指令
npm run build
- 会生成一个build文件,这个build就是你发给后端的文件
- 执行
serve build指定build文件为一个服务器
- 这时候你的页面就可以呈现出来了
React扩展知识
setState
setState其实是有两种写法的,并且setState中的执行是一个异步任务!
1.对象式的setState
setState(stateChange, [callback])
- stateChange为状态改变对象(该对象可以体现出状态的更改)
- callback是可选的回调函数, 它在状态更新完毕、界面也更新后(render调用后)才被调用
1 2 3 4 5 6 7 8 9 10
| add=()=>{ const {count} = this.state this.setState({count:count+1},()=>{ console.log(this.state.count); }) }
|
2.函数式的setState
setState(updater, [callback])
- updater为返回stateChange对象的函数。
- updater可以接收到state和props。
- callback是可选的回调函数, 它在状态更新、界面也更新后(render调用后)才被调用。
1 2 3 4 5 6 7 8 9 10
| add=()=>{ this.setState((state,props)=>{ return { count:state.count + 1 } },()=>{ console.log(this.state.count); }) }
|
总结:
- 对象式的setState是函数式的setState的简写方式(语法糖)
- 使用原则:
- 如果新状态不依赖于原状态 ===> 使用对象方式
- 如果新状态依赖于原状态 ===> 使用函数方式
- 如果需要在setState()执行后获取最新的状态数据, 要在第二个callback函数中读取
路由组件lazyLoad
react在加载页面过程中,路由组件都会被加载并缓存在浏览器中,这样会造成请求负载
引入路由组件
需要用到lazy和Suspense这两个react内置的方法和组件
1 2 3 4 5 6 7 8 9
| import React, { Component,lazy,Suspense } from 'react' import {NavLink,Route} from 'react-router-dom'
const Home = lazy(()=> import('./Home') ) const About = lazy(()=> import('./About') )
|
包裹路由组件
对于Route组件要用<Suspense></Suspense>组件包裹,并设置默认加载组件
1 2 3 4 5 6 7
| <div className="panel-body"> {} <Suspense fallback={<Loading/>}> <Route path="/about" component={About}/> <Route path="/home" component={Home}/> </Suspense> </div>
|
Hooks
简介:
- Hook是React 16.8.0版本增加的新特性/新语法
- 可以让你在函数组件中使用 state 以及其他的 React 特性
- Hook已然成为了React组件编写的新趋势
三个常用Hooks
- State Hook: React.useState()
- Effect Hook: React.useEffect()
- Ref Hook: React.useRef()
useState Hook
过去当中,我们只所以不用函数式组件,是因为其无法得到state状态等等一系列问题,但是React提供了新的解决方案:
- 语法:
const [xxx, setXxx] = React.useState(initValue)
- 这种写法其实是数组的解构赋值
- initValue:第一次初始化指定的值在内部作缓存
- [xxx, setXxx]:第1个为内部当前状态值, 第2个为更新状态值的函数
- setXxx()
setXxx(newValue): 参数为非函数值, 直接指定新的状态值, 内部用其覆盖原来的状态值
setXxx(value => newValue): 参数为函数, 接收原本的状态值, 返回新的状态值, 内部用其覆盖原来的状态值
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| function Demo() { const [count,setCount] = React.useState(0); const [name,setName] = React.useState('jack'); function add() { setCount((count)=>{ return count+1 }) } function change() { setName('Tom') } return ( <div> <h2>当前求和:{count}</h2> <h2>我的名字:{name}</h2> <button onClick={add}>点我加一</button> <button onClick={change}>点我改名</button> </div> ) } export default Demo
|
useEffect Hook
参考帖子
Effect Hook 可以让你在函数组件中执行副作用操作*(用于模拟类组件中的生命周期钩子)*
React中的副作用操作:
- 发ajax请求数据获取
- 设置订阅 / 启动定时器
- 手动更改真实DOM
Effect Hook 的第一个参数是回调函数,第二个参数是依赖。
当第二个参数为 null 或 undefined 的时候,回调函数每次 render 都会执行,而参数为数组的时候,只有依赖项变了才会执行。
- 当第二个参数为null 或 undefined,每次 render 都会执行
- 当第二个参数为[]空数组,回调函数只会在第一次render()后执行(挂载完毕)
- 当第二个参数数组中有值,则他会在值改变时触发回调(会先执行一次)
语法说明:
1 2 3 4 5 6 7 8 9 10 11
| React.useEffect(()=>{ let timer = setInterval(() => { setCount(count=>count+1) }, 400); return ()=>{ clearInterval(timer) } },[])
|
可以把 useEffect Hook 看做如下三个函数的组合
- componentDidMount( ) 组件挂载完毕的钩子
- componentDidUpdate( ) 组件更新完毕钩子
- componentWillUnmount( ) 组件将要销毁的钩子
useRef Hook
- Ref Hook可以在函数组件中存储/查找组件内的标签或任意其它数据
- 语法:
const refContainer = useRef( )
- 作用:保存标签对象,功能与React.createRef( )一样
跟类式组件官方推荐的ref有些相像
1 2 3 4 5 6 7 8 9 10 11
| const myRef = React.useRef();
function show() { alert(myRef.current.value) }
...
<input type="text" ref={myRef}/>
|
memo Hook
memo缓存,当组件被反复加载时会一直触发函数组件,非常占用性能
此时点击按钮就不会重复触发console.log('子组件被触发');
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| import React,{useState,memo} from 'react'
const Sub = memo(()=>{ console.log('子组件被触发');
return <p>子组件被触发</p> })
const App = () => { const [num,setnum] =useState(0);
const handleClick = ()=>{ setnum(num+1) }
return ( <div> <h2>{num}</h2> <button onClick={handleClick}>累加</button> <Sub/> </div> ) } export default App
|
useCallback Hook
配合memo使用,在我们单独使用memo的时候会遇到memo失效bug,当父组件向子组件传递的数据是一个函数方法,会造成memo失效
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| import React,{useState,memo,useCallback} from 'react' interface IProps{ handleClick:()=>void }
const Sub = memo((props:IProps)=>{ console.log('子组件被触发'); return ( <> <button onClick={props.handleClick}>累加</button> <p>子组件被触发</p> </> ) })
const App = () => { const [num,setnum] =useState(0); const handleClick = useCallback( ()=>setnum(item=>{ return item+1 }), [] ) return ( <div> <h2>{num}</h2> <Sub handleClick={handleClick}/> </div> ) } export default App
|
useMemo Hook
用法和useCallback一样,就是多嵌套一层
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| import React,{useState,memo,useCallback,useMemo} from 'react'
interface IProps{ handleClick:()=>void }
const Sub = memo((props:IProps)=>{ console.log('子组件被触发');
return ( <> <button onClick={props.handleClick}>累加</button> <p>子组件被触发</p> </> ) })
const App = () => { const [num,setnum] =useState(0);
const handleClick = useMemo(()=>{ return ()=> setnum(item=>{ return item+1 }) },[])
return ( <div> <h2>{num}</h2> <Sub handleClick={handleClick}/> </div> ) } export default App
|
自定义Hook
自定义hook其实就是自己封装一个函数,然后按需使用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| import React from 'react'
const samllWord = 'hello world!'
function useWord(word: string):string { return word.toUpperCase(); }
function App() {
const bigWord = useWord(samllWord) return ( <div> <h1>小写:{samllWord}</h1> <h1>小写:{bigWord}</h1> </div> ) }
export default App
|
Fragment
我们在编写jsx的时候都需要一个根标签包裹,这就会造成层级过多很臃肿。我们可以使用import React, { Component,Fragment } from 'react'引入Fragment来解决这个问题
第一种写法:
使用<Fragment></Fragment>包裹
1 2 3 4 5 6 7 8 9 10 11
| import React, { Component,Fragment } from 'react' export default class Demo extends Component { render() { return ( <Fragment> <input type="text" /> <input type="text" /> </Fragment> ) } }
|
第二种写法:
使用空标签包裹<></>
1 2 3 4 5 6 7 8 9 10 11
| import React, { Component } from 'react' export default class Demo extends Component { render() { return ( <> <input type="text" /> <input type="text" /> </> ) } }
|
Context
Context是React提供的一种【祖组件】和【后代组件】间通信的新功能
使用:
1.发送数据的组件
- 创建Context容器对象:
const XxxContext = React.createContext()
- 渲染子组时,外面包裹xxxContext.Provider, 通过value属性给后代组件传递数据
<xxxContext.Provider value={数据}>子组件</xxxContext.Provider>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| const UserNameContext = React.createContext(); const {Provider,Consumer} = UserNameContext;
export default class A extends Component { state={ username:'Tom', age:18 }
render() { const {username,age} = this.state return ( <div className='parent'> <h3>我是A组件</h3> <h4>我的用户名是{username}</h4> <h4>我的年龄是{age}</h4> {/* <B username={this.state.username}/> */} <Provider value={{username,age}}> <B/> </Provider>
</div> ) } }
|
2.读取数据的组件
第一种方式:适用于类组件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| class C extends Component { static contextType = UserNameContext
render() { const {username,age}=this.context return ( <div className='grand'> <h3>我是C组件</h3> <h4> 我从A组件接收到的名字是:{username} 年龄是:{age} </h4> </div> ) } }
|
第二种方式:函数组件和类组件都可
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| function C() { return ( <div className='grand'> <h3>我是C组件</h3> <h4> 我从A组件接收到的名字是: <Consumer> { value =>{ return `${value.username},年龄是${value.age}` } } </Consumer> </h4> </div> ) }
|
组件优化
Component的两个问题
只要执行setState(),即使不改变状态数据, 组件也会重新render() ==> 效率低
只当前组件重新render(), 就会自动重新render子组件,纵使子组件没有用到父组件的任何数据 ==> 效率低
效率高的做法
只有当组件的state或props数据发生改变的时候才重新render()
原因
Component中的shouldComponentUpdate()总是返回true
解决
方法1:
自己重写一个shouldComponentUpdate()阀门控制方法
shouldComponentUpdate()阀门在开启的前提是state或者props发生改变!
正好shouldComponentUpdate(nextProps,nextState)可以传递两个参数
- nextProps 接下来要变的目标props
- nextState 接下来要变的目标state
原理其实就是判断当前的state和改变后的state是否一致
1 2 3 4 5 6 7 8 9
| shouldComponentUpdate(nextProps,nextState){ if (this.state.carName===nextState.carName) { return false }else{ return true } }
|
接收的组件也要重写:
判断接收的props是否和目标props一致
1 2 3 4 5 6 7 8 9
| shouldComponentUpdate(nextProps,nextState){ if (this.props.carName===nextProps.carName) { return false }else{ return true } }
|
方法2:
使用PureComponent
PureComponent重写了shouldComponentUpdate(), 只有state或props数据有变化才返回true
不使用Components,而是使用PureComponent
1 2 3 4 5 6
| import React, { PureComponent } from 'react'
export default class Parent extends PureComponent { ...... }
|
注意:
- 只是进行state和props数据的浅比较, 如果只是数据对象内部数据变了, 返回false 。不要直接修改state数据, 而是要产生新数据项目中一般使用PureComponent来优化
render props
Vue中:
使用slot技术, 也就是通过组件标签体传入结构 <A><B/></A>
React中:
使用children props: 通过组件标签体传入结构
使用render props: 通过组件标签属性传入结构,而且可以携带数据,一般用render函数属性
children props方式:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| export default class Parent extends Component {
render() { return ( <div className='parent'> <h3>我是parent组件</h3> <A> '内容' </A> </div> ) } }
...
class A extends Component { console.log(this.props.children) render() { return ( <div className='child'> <h3>我是A组件</h3><br /> </div> ) } }
|
render props方式:
这种方式是在你不知道这个地方要放什么组件的时候可以让其他开发者知道这里放的是一个占位组件,相当于Vue中的插槽
<A render={(name)=><B name={name}/>}/>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| import React, { Component } from 'react' import './index.css' export default class Parent extends Component {
render() { return ( <div className='parent'> <h3>我是parent组件</h3> <A render={(name)=><B name={name}/>}/> </div> ) } }
class A extends Component { state={ name:'tom' } render() { const {name}=this.state return ( <div className='child'> <h3>我是A组件</h3><br /> <p>我发送的name:{name}</p> {this.props.render(name)} </div> ) } } class B extends Component { render() { return ( <div className='b'> <h3>我是B组件</h3><br /> <h4>我收到的name:{this.props.name}</h4> </div> ) } }
|
错误边界
理解:
错误边界(Error boundary):用来捕获后代组件错误,渲染出备用页面
特点:
只能捕获后代组件生命周期产生的错误,不能捕获自己组件产生的错误和其他组件在合成事件、定时器中产生的错误
使用方式:
为父组件添加生命周期勾子处理错误:
getDerivedStateFromError配合componentDidCatch
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| ...
state={ hasError:'' }
static getDerivedStateFromProps(error){ console.log(error); return {hasError:error} }
componentDidCatch(){ console.log('统计错误此处,反馈服务器,用于通知编码人员进行bug的解决'); }
...
|
组件间通信总结
组件间关系:
- 父子组件
- 兄弟组件(非嵌套组件)
- 祖孙组件(跨级组件)
几种通信方式:
- props:
- .children props
- .render props
- 消息订阅-发布:
- pubs-sub,event等等
- 集中式管理:
- redux,dva等等
- conText:
- 生产者消费者模式
比较好的搭配方式:
- 父子组件:props
- 兄弟组件:消息订阅-发布、集中式管理
- 祖孙组件(跨级组件):消息订阅-发布、集中式管理、conText(开发用的少,封装插件用的多)
React Router 6
概述
React Router以三个不同的包发布到npm上,它们分别为:
- react-router:路由的核心库,提供了很多的:组件、钩子。
- react-router-dom:包含react-router所有内容,井添加一些专门用于DOM的组件,例如
<BrowserRouter> 等。
- react-router-native:包括react-router所有内容,并添加一些专[用于ReactNative的API,例如:
<NativeRouter>等。
与React Router 5.x版本相比,改变了什么?
- 内置组件的变化:移除
<Switch/>,新增<Routes/> 等。
- 语法的变化:
component={About} 变为element={ <About/>}等。
- 新增多个hook: useParams 、useNavigate. useMatch 等。
- 官方明确推荐函数式组件了! ! !
Component
BrowserRouter
- 说明:
BrowserRouter用于包裹整个应用
- 示例代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| import React from 'react'
import ReactDOM from 'react-dom/client';
import App from './App' import {BrowserRouter} from 'react-router-dom'
const root = ReactDOM.createRoot(document.getElementById('root')); root.render( <BrowserRouter> <App/> </BrowserRouter> );
|
HashRouter
1.说明:作用与<BrowserRouter>一样,但<HashRouter>修改的是地址栏的hash值。
2.备注: 6.x版本中<HashRouter>、<BrowserRoutery 的用法与5.x相同。
Routes与Route
- v6版本中移出了先前的
<Switch>,引入了新的替代者: <Routes> 。
<Routes> 和<Route> 要配合使用,且必须要用<Routes>包裹<Route>。
<Route> 相当于一个if语询,如果其路径与当前URL匹配,则呈现其对应的组件。
<Route caseSensitive> 属性用于指定:匹配时是否区分大小写(默认为false)。
- 当URL发生变化时,
<Routes> 都会查看其所有子<Route>元素以找到最佳匹配并呈现组件。
<Route>也可以嵌套使用,且可配合useRoutes()配置“路由表”,但需要通过<outlet> 组件来渲染其子路由。
Navigate
- 作用:只要
<Navigate>组件被渲染,就会修改路径,切换视图。
- replace属性用于控制跳转模式(push 或replace,默认是push) .
- 示例代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| import React,{useState} from 'react'
import {Navigate} from 'react-router-dom' export default function Home() { const [sum,setSum] = useState(1) return ( <div> <h1>我是Home</h1> {/* 根据sum决定是否切换视图 */} {sum === 2 ? <Navigate to="/about" replace/> : <h4>当前sum值:{sum}</h4>} <button onClick={()=>setSum(2)}>点我将sum变为2</button> </div> ) }
|
当url为:3000/的时候在5版本用的是<Redirect to="/about"/>,但在6版本中则使用Navigate
1 2 3 4 5 6 7 8
| ... {} <Routes> <Route path='/about' element={<About/>}/> <Route path='/home' element={<Home/>}/> <Route path='/' element={<Navigate to="/about"/>}/> </Routes> ...
|
NavLink高亮
在过去我们要想让激活的NavLink添加样式可以使用activeClassName='found'表示激活状态的navLink类名为found,但在6当中改变了这一做法:
NavLink中的className赋值一个函数,传递形参为{isActive}是个布尔值,根据这个布尔值判断是否被激活
true为激活,false为未激活
- 另外可以给NavLink添加end 表示子级路由亮起的时候自己不亮
1 2 3 4 5
| ... {} <NavLink className={computeClassName} to="/about">About</NavLink> <NavLink className={computeClassName} to="/home">Home</NavLink> ...
|
1 2 3
| function computeClassName({isActive}) { return isActive ? 'list-group-item found':'list-group-item' }
|
路由表
这个路由表和Vue有点相像,就是把路由规则写到一个数组中,这样写法更加直观
配置路由表
涵盖嵌套路由配置规则:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| import About from '../pages/About' import Home from '../pages/Home' import Message from '../pages/Message' import News from '../pages/News'
import { Navigate } from 'react-router-dom'
export default [ { path:'/about', element:<About/> }, { path:'/home', element:<Home/>, children:[ { path:'news', element:<News/> }, { path:'message', element:<Message/> }, ] }, { path:'/', element:<Navigate to="/about"/> }, ]
|
配置占位(仅仅一级路由)
使用到hooks中的useRoutes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| import {NavLink,useRoutes} from 'react-router-dom';
import routes from './routes';
export default function App() {
const element = useRoutes(routes)
return ( <div> <div className="row"> <div className="col-xs-offset-2 col-xs-8"> <div className="page-header"><h2>React Router Demo</h2></div> </div> </div> <div className="row"> <div className="col-xs-2 col-xs-offset-2"> <div className="list-group"> {/* 路由链接 */} <NavLink className="list-group-item" to="/about">About</NavLink> <NavLink className="list-group-item" to="/home">Home</NavLink> </div> </div> <div className="col-xs-6"> <div className="panel"> <div className="panel-body"> {/* ----------------重要------------------- */} {element} {/* --------------占位作用------------------- */} {/* ----------------重要------------------- */} </div> </div> </div> </div> </div> ) }
|
配置占位(二级路由…)
对于二级路由之后的要使用内置组件<Outlet/>指定路由组件呈现位置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| import React from 'react' import {NavLink,Outlet} from 'react-router-dom' export default function Home() { return ( <div> <h1>我是Home</h1> <div> <ul className="nav nav-tabs"> <li> <NavLink className="list-group-item" to="news">News</NavLink> </li> <li> <NavLink className="list-group-item" to="message">Message</NavLink> </li> </ul> {/* 指定路由组件呈现的位置 */} <Outlet/> </div> </div> ) }
|
路由传参
params
params传参需要对路径进行占位
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| import About from '../pages/About' import Home from '../pages/Home' import Message from '../pages/Message' import News from '../pages/News' import Detail from '../pages/Detail' import { Navigate } from 'react-router-dom' export default [ { path:'/about', element:<About/> }, { path:'/home', element:<Home/>, children:[ { path:'news', element:<News/> }, { path:'message', element:<Message/>, children:[ { path:'detail/:id/:title/:content', element:<Detail/> }, ] }, ] }, { path:'/', element:<Navigate to="/about"/> }, ]
|
传递数据路由组件
更改url传递参数,to的路径更改
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| ... return ( <div> <ul> { message.map((m)=>{ return ( <li key={m.id}> <Link to={`detail/${m.id}/${m.title}/${m.content}`}>{m.title}</Link> </li> ) }) } </ul> <hr /> {/* 指定路由组件的展示位置 */} <Outlet/> </div> ) ...
|
接收状态的组件
使用useParams接收传递的状态,传递的是一个对象,可以使用解构赋值方式
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| import React from 'react' import { useParams } from 'react-router-dom' export default function Detail() { const {id,title,content} = useParams() return ( <div> <ul> <li>id:{id}</li> <li>title:{title}</li> <li>content:{content}</li> </ul> </div> ) }
|
search
search传参肯定不需要在对路由表进行更改了,不需要:占位了
传递数据路由组件
对to:url进行更改
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| import React,{useState}from 'react' import { Link,Outlet } from 'react-router-dom'
export default function Message() { const [message] = useState([ {id:'001',title:'消息1',content:'one'}, {id:'002',title:'消息2',content:'two'}, {id:'003',title:'消息3',content:'three'}, ]) return ( <div> <ul> { message.map((m)=>{ return ( <li key={m.id}> <Link to={`detail?id=${m.id}&title=${m.title}&content=${m.content}`}>{m.title}</Link> </li> ) }) } </ul> <hr /> {/* 指定路由组件的展示位置 */} <Outlet/> </div> ) }
|
接收数据的路由组件
跟params不同的是要使用useSearchParams这个hook方法接收,而且接收的还是一个数组,有两个参数,search和setSearch
- search上内置的
get('你要的数据key值')可以获取数据
- setSearch可以更改参数
- 实例1:
setSearch('id=10080&title=haha&content=xixi')
- 实例2:
setSearch({id:5,title:haha,content:xixi})
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| import React from 'react' import { useSearchParams } from 'react-router-dom' export default function Detail() { const [search,setSearch] = useSearchParams() const id = search.get('id'); const title = search.get('title'); const content = search.get('content'); return ( <div> <ul> <li>id:{id}</li> <li>title:{title}</li> <li>content:{content}</li> </ul> </div> ) }
|
state
传递数据的组件
多出了一个属性state={{}}传递一个对象,这个对象包含你要传递的值
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| import React,{useState}from 'react' import { Link,Outlet } from 'react-router-dom'
export default function Message() { const [message] = useState([ {id:'001',title:'消息1',content:'one'}, {id:'002',title:'消息2',content:'two'}, {id:'003',title:'消息3',content:'three'}, ]) return ( <div> <ul> { message.map((m)=>{ return ( <li key={m.id}> <Link to='detail' state={{ id:m.id, title:m.title, content:m.content }}>{m.title}</Link> </li> ) }) } </ul> <hr /> {/* 指定路由组件的展示位置 */} <Outlet/> </div> ) }
|
接收数据的组件
使用到useLocation这个hook,返回值是一个对象,可以使用结构再赋值的形式获取到state对象中的传递过来的属性
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| import React from 'react' import { useLocation } from 'react-router-dom' export default function Detail() { const {state:{id,title,content}} =useLocation() return ( <div> <ul> <li>id:{id}</li> <li>title:{title}</li> <li>content:{content}</li> </ul> </div> ) }
|
编程式路由导航
useNavigate
useNavigate可以实现跳转指定路径并同时携带state参数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| ... import { Link,Outlet,useNavigate } from 'react-router-dom' ...
const navigate = useNavigate();
function showDetail(m) { navigate('detail',{ replace:false, state:{ id:m.id, title:m.title, content:m.content } }) }
...
|
当然也可以实现前进后退功能:
- navigate(-1) 后退
- navigate(1) 前进
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| import React from 'react' import { useNavigate } from 'react-router-dom'
export default function Header() { const navigate = useNavigate();
function back() { navigate(-1) } function forward() { navigate(1) } return ( <div className="col-xs-offset-2 col-xs-8"> <div className="page-header"> <h2>React Router Demo</h2> <button onClick={back}>后退</button> <button onClick={forward}>前进</button> </div> </div> ) }
|
额外的几个Hooks
1. useInRouterContext()
作用:如果组件在<Router>的上下文中呈现,则useInRouterContext()勾子返回true,否则false
简单来说就是这个组件有没有被<BrowserRouter>所包裹
2.useNavigationType()
- 作用:返回当前的导航类型(用户是如何来到当前页面的)
- 返回值:POP,PUSH,PEPLACE
- 备注:POP是指在浏览器中直接打开了这个路由组件(刷新页面)
3.useOutlet()
- 作用:用来呈现当前组件中渲染的嵌套路由
- 示例代码:
1 2 3 4
| const result = useOutlet() console.log(result)
|
4.useResolvedPath()
- 作用:给定一个URL值,解析其中的:path,search,hash值