React进阶高级指南(一)

简介: React进阶高级指南(一)

入门React后,基本上可以写一个小型项目了,但React还有很多高级功能及API可以上手方便开发。以下便是React进阶教程说明。
目录
代码拆分
错误处理ErrorBoundaries
上下文Context
Refs
片段Fragment
代码拆分
类似于vue中的组件引用时加载,react也可以在引用时再加载到组件中,从而使打包的app.js被拆分为多个组件。
代码拆分的方法有多种,如:CodeSpliting打包优化,react.lazy懒加载,基于路由进行代码拆分
代码拆分可以提升首屏加载速度
CodeSpliting
将代码拆分引入到应用程序中的最好方法是通过动态 import() 语法。
在create-react-app中已经配置好对应的webpack语法,Next.js也支持开箱即用,而如果自己设置webpack话,需要阅读关于code spliting的代码拆分指南
babel对应解析动态导入语法:babel-plugin-syntax-dynamic-import

示例:create-react-app动态import
// asyncComponent.js 创建一个动态导入组件函数
export default function asyncComponent(importComponent){
class AsyncComponent extends Component{
constructor(props){
super(props);
this.state={
component:null
}
}
async componentDidMount(){
const {default:component} = await importComponent();
this.setState({
component:component
})
}
render(){
const C = this.state.component;
return C?:null
}
}
return AsyncComponent;
}
// 在create-react-app中使用 动态import
const asyncForm = AsyncComponent(()=>import('./page/form/Form'));
class Routes extends React.Component {
render() {
return (

)
}
}

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
React.lazy
React.lazy就是用于动态加载组件的工具包
注意:
React.lazy 和 Suspense 尚不可用于服务器端渲染。如果要在服务器渲染的应用程序中进行代码拆分,我们建议使用 Loadable Components。它有一个很好的服务器端渲染打包拆分指南。

const OtherComponent = React.lazy(()=>import('./OtherComponent'));
function MyComponent(){
return (


)
}
1
2
3
4
5
6
Suspense
当组件还未加载完成时,可以渲染一些loading动画,这时,可以使用Suspense组件完成
const OtherComponent = React.lazy(()=>import('./OtherComponent'));
function MyComponent(){
return (

loading....
}>



)
}
1
2
3
4
5
6
7
8
9
10
fallback prop(属性) 接受在等待加载组件时要渲染的任何 React 元素
错误处理ErrorBoundaries
当其他模块无法加载(如:网络故障时),则会触发错误,这时可以使用React拿出的错误边界处理Error Boundary。
如果一个类组件定义了生命周期方法中的任何一个(或两个)static getDerivedStateFromError() 或componentDidCatch(),那么它就成了一个错误边界。 使用static getDerivedStateFromError()在抛出错误后渲染回退UI。 使用 componentDidCatch() 来记录错误信息。

注意 错误边界(Error Boundaries) 仅可以捕获其子组件的错误。
class ErrorBoundary extends React.Component {
constructor(props) {
super(props);
this.state = { error: null, errorInfo: null };
}

componentDidCatch(error, errorInfo) {
// Catch errors in any components below and re-render with error message
this.setState({
error: error,
errorInfo: errorInfo
})
// You can also log error messages to an error reporting service here
}

render() {
if (this.state.errorInfo) {
// Error path
return (


Something went wrong.



{this.state.error && this.state.error.toString()}


{this.state.errorInfo.componentStack}


);
}
// Normally, just render children
return this.props.children;
}
}

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
以上,当出现错误时,this.state.errorInfo为true,则会渲染预设好的错误展示页面,没错则直接渲染子组件内容
错误边界的粒度完全取决于你的应用。你可以将其包装在最顶层的路由组件并为用户展示一个 “发生异常(Something went wrong)“的错误信息,就像服务端框架通常处理崩溃一样。你也可以将单独的插件包装在错误边界内部以保护应用不受该组件崩溃的影响。
上下文Context
上下文context提供了一种通过组件树传递数据的方法,无需在每个级别手动传递props属性。

何时使用Context?
Context 旨在共享一个组件树内可被视为 “全局” 的数据,例如当前经过身份验证的用户,主题或首选语言等。
当你不想在组件树中通过逐层传递props或者state 的方式来传递数据时,可以使用Context来实现跨层级的组件数据传递。
如何使用Context?
要context发挥作用,需要用到两种组件,一个是context生产者(Provider)[通常是父节点],一个是消费者Consumer【通常是一个或多个子节点】—— 所以context的使用是基于生产者消费者模式
参考文章:React Context 的理解以及应用
Context对应的API
React.createContext(defaultValue)
用于创建一个context对象,其中defaultValue为默认初始值,当Provider中没有匹配的value时,会在defaultValue中查找
const MyContext = React.createContext();
1
Context.Provider
生产者,作为一个组件,用它包裹的后代组件将共享它的value属性,当value属性发生变化时,所有作为 Provider(提供者) 后代的 consumer(使用者) 组件 都将重新渲染。


1
Context.Consumer
一个可以订阅 context 变化的 React 组件。需要接收一个函数作为子节点。该函数接收当前 context 值并返回一个 React 节点,基参数即为Provider中传入的value属性值(对象)或者createContext中的defaultValue

{({theme}) => (

)}

1
2
3
4
5
Class.contextType
在React的普通Class组件中,通过contextType声明分配由React.createContext()创建的Context 对象。之后便可以使用this.context使用该context对象的value值
class MyClass extends React.Component {
static contextType = MyContext;
render() {
let value = this.context;
/ render something based on the value /
}
}
1
2
3
4
5
6
7
示例
// themecontext.js
import React from 'react';
export const themes= {
light:{
foreground:'#000',
background:'#eee'
},
dark:{
foreground: '#fff',
background:'#222'
}
};
export const ThemeContext=React.createContext(
themes.dark
);
// themeButton.js
import {ThemeContext} from "./theme-context";
import React from 'react';

export default class ThemeButton extends React.Component{
static contextType=ThemeContext;
render(){
let props = this.props;
let theme = this.context;
return (





)
}
}
// Context.js
import React from 'react';
import {ThemeContext,themes} from "./theme-context";
import ThemeButton from './theme-button'

function Toolbar(props){
return (

Change Theme

)
}
class Context extends React.Component {
constructor(props) {
super(props);
this.state={
themes:themes.light,
};
}
toggleTheme=()=>{
this.setState((preState)=>{
return {
themes:preState.themes===themes.dark?themes.light:themes.dark
}
});
};
render() {
return (





)
}
}

export default Context;

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
更多示例参考:context上下文
Refs
Refs提供了一个对真实DOM(组件)的引用,我们可以通过这个引用直接操作DOM(跟vue的refs类似)
什么时候用?? 当需要处理元素的focus,文本的选择或者媒体的播放等,以及触发强制动画或者同第三方库集成的时候。
如何用?:在V16版本后,官方提供了React.createRef()这个API用于创建Ref变量,然后再将这个变量赋值给组件声明中ref属性就好了。
参考详情:Refs和DOM元素、转发Refs
class fancy extends React.Component {
constructor(props) {
super(props);
this.textInput=React.createRef();
this.focusInput=this.focusInput.bind(this);
}
focusInput(){
// 通过this.xxx.current获取组件
this.textInput.current.focus();
}
render() {
return (


这将有一个button






)
}
}
// 在v16版本之前
// 元素上ref属性定义
{this.textInput=ele}} type="text" />
// 获取ref值
this.textInput.focus();

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
在v16版本后,通过createRef()来生成ref并赋值给对应组件或DOM元素。之前是通过在元素上ele=>this.refName=ele完成赋值
在v16版本后,通过this.refName.current来获取refName对应对应组件或DOM元素。之前是直接通过this.refName获取
当ref属性赋在DOM元素上时,this.refName.current返回的就是DOM元素,当赋给React组件时,this.refName.current返回的就是React组件
不能在函数式组件上使用ref属性,但可以在函数式组件内部的子组件中使用ref属性
传递Refs
当父组件需要拿到子组件的ref时,在v16版本后可以通过React.forwardRef()实现
思路:通过父组件向子组件传递ref属性,在子组件中获取到父组件赋值的ref值后,对应的赋给相应元素实现ref的传递
// 示例1:简单函数式组件中传递ref。如下,通过this.refFan.current可以直接获取到button
const FancyButton = React.forwardRef((props,ref)=>(


子组件




));
const refFan = React.createRef();

我是按钮
// 示例2:在类组件中传递Ref
// child.js
import React from 'react';
class Child extends React.Component {
render() {
const {forwardedRef,...rest} = this.props;
return(


这是子组件的另一个按钮




)
}
}
export default React.forwardRef((props,ref)=>());
// parent.js
this.childRef= 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
24
25
26
27
通过React.forwardRef包裹组件用于传递父组件赋值的ref
在类组件中,通过属性forwardedRef来获取父组件赋值的ref,并赋给对应的元素或组件实例
片段Fragment
React中一种常见模式是为一个组件同时返回多个并列元素。而render只接受一个子组件,所以通过片段(Fragment)可以将子元素列表添加到一个分组中,且不会在DOM中增加多余的节点。应用场景

通过来表示这是一个代码片段。(类似于Vue的标签)

支持key属性,即当使用data.map返回列表时,可以直接在标签上设置key={xxx}
// table.js
class Table extends React.Component {
render() {
return (






);
}
}
// column.js
class Columns extends React.Component {
render() {
return (

Hello
World

);
}
相关文章
|
7月前
|
前端开发 JavaScript 算法
第一章 react简介
第一章 react简介
|
2月前
|
资源调度 前端开发 JavaScript
React进阶学习
React进阶学习
15 1
|
4月前
|
前端开发 JavaScript 数据处理
如何学习React的高级概念?
【8月更文挑战第26天】如何学习React的高级概念?
40 2
|
前端开发 JavaScript
react的基础学习和案例
react的基础学习和案例
124 0
|
前端开发
react笔记之学习之完成添加功能
react笔记之学习之完成添加功能
65 0
react笔记之学习之完成添加功能
|
前端开发
react实战笔记154:ReactRouter简介
react实战笔记154:ReactRouter简介
77 0
react实战笔记154:ReactRouter简介
|
前端开发 JavaScript
React 实用基础合集(1)
React 实用基础合集(1)
871 2
|
前端开发
react实战笔记33:组件简介1
react实战笔记33:组件简介1
84 0
react实战笔记33:组件简介1