React Hook用法示例详解(6个常见hook)
1、usestate:让函数式组件拥有状态
用法示例:
// 计数器 import { usestate } from 'react' const test = () => { const [count, setcount] = usestate(0); return ( <> <h1>点击了{count}次</h1> <button onclick={() => setcount(count + 1)}>+1</button> </> ); } export default test
ps:class组件中this.setstate更新是state是合并, usestate中setstate是替换。例如:
// 错误示例 import { usestate } from 'react' const test = () => { const [counts, setcounts] = usestate({ num1: 0, num2: 0 }); return ( <> <h1>num1:{counts.num1}</h1> <h1>num2:{counts.num2}</h1> <button onclick={() => setcounts({ num1: counts.num1 + 1})}>num1+1</button> <button onclick={() => setcounts({ num2: counts.num2 + 1})}>num2+1</button> </> ); } export default test
可以看到usestate中setstate是替换,不会合并,正确更新:
import { usestate } from 'react' const test = () => { const [counts, setcounts] = usestate({ num1: 0, num2: 0 }); return ( <> <h1>num1:{counts.num1}</h1> <h1>num2:{counts.num2}</h1> <button onclick={() => setcounts({ ...counts, num1: counts.num1 + 1})}>num1+1</button> <button onclick={() => setcounts({ ...counts, num2: counts.num2 + 1})}>num2+1</button> </> ); } export default test
2、useeffect:副作用,取代生命周期
用法示例,在class组件中如果需要在组件挂载后和数据更新后做同一件事,我们会这样做:
componentdidmount() { // 做一些事 } componentdidupdate() { // 做一些事 }
可以看出来,如果逻辑复杂后,代码看起来不优雅,且容易造成逻辑混乱,而使用useeffect:
useeffect(() => { // 做一些事 });
此刻已经看到了useeffect的基本用法,除此之外,他还可以绑定触发更新的依赖状态,默认是状态中任何数据发生变化副作用都会执行,如:
import { usestate, useeffect } from 'react' const test = () => { const [count1, setcount1] = usestate(0); const [count2, setcount2] = usestate(0); useeffect(() => { console.log('useeffect触发了') }); return ( <> <h1>count1:{count1}</h1> <h1>count2:{count2}</h1> <button onclick={() => setcount1(count1 + 1)}>count1+1</button> <button onclick={() => setcount2(count2 + 1)}>count2+1</button> </> ); } export default test
将上述代码useeffect第二个参数传入需要绑定的状态,可绑定多个:
// 语法:useeffect(回调函数,[依赖值]) useeffect(() => { console.log('useeffect触发了') }, [count1]);
可以看到,只有绑定的count1发生变化才会触发,如果传空数组则任何状态发生变化都不会触发,此时useeffect的作用就类似class组件中的componentdidmount,所以发送请求通常也会在此执行。
清理副作用
在上面的操作中都不用清理的副作用,然而,有些副作用是需要去清理的,不清理会造成异常甚至内存泄漏,比如开启定时器,如果不清理,则会多次开启,从上面可以看到useeffect的第一个参数是一个回调函数,可以在回调函数中再返回一个函数,该函数可以在状态更新后第一个回调函数执行之前调用,具体实现:
useeffect(() => { // 设置副作用 return () => { // 清理副作用 } });
3、usecontext:跨组件共享数据
react.createcontext();创建一个testcontext对象
testcontext.provider包裹子组件
数据放在<testcontext.provider value={value}>的value中
子组件中通过usecontext(testcontext)获取值
import react, { usecontext, usestate } from 'react'; const testcontext = react.createcontext(); const parent = () => { const [value, setvalue] = usestate(0); return ( <div> {(() => console.log("parent-render"))()} <button onclick={() => setvalue(value + 1)}>value + 1</button> <testcontext.provider value={value}> <child1 /> <child2 /> </testcontext.provider> </div> ); } const child1 = () => { const value = usecontext(testcontext); return ( <div> {(() => console.log('child1-render'))()} <h3>child1-value: {value}</h3> </div> ); } const child2 = () => { return ( <div> {(() => console.log('child2-render'))()} <h3>child2</h3> </div> ); } export default parent
至此数据实现共享了,但是可以看到在testcontext中的共享数据只要发生变化,子组件都会重新渲染,child2并没有绑定数据,不希望他做无意义的渲染,可以使用react.memo解决,实现:
const child2 = react.memo(() => { return ( <div> {(() => console.log('child2-render'))()} <h3>child2</h3> </div> ); });
4、usecallback:性能优化
语法:
// usecallback(回调函数,[依赖值]) const handleclick = usecallback(()=> { // 做一些事 }, [value]);
usecallback返回的是一个 memoized(缓存)函数,在依赖不变的情况下,多次定义的时候,返回的值是相同的,他的实现原理是当使用一组参数初次调用函数时,会缓存参数和计算结果,当再次使用相同的参数调用该函数时,会直接返回相应的缓存结果。
优化性能例子:
import react, { usestate, usecallback, memo } from 'react'; const parent = () => { const [value1, setvalue1] = usestate(0); const [value2, setvalue2] = usestate(0); const handleclick1 = usecallback(()=> { setvalue1(value1 + 1); }, [value1]); const handleclick2 = usecallback(()=> { setvalue2(value2 + 1); }, [value2]); return ( <> {(() => console.log("parent-render"))()} <h3>{value1}</h3> <h3>{value2}</h3> <child1 handleclick1={handleclick1} /> <child2 handleclick2={handleclick2} /> </> ); } const child1 = memo(props => { return ( <div> {(() => console.log("child1-render"))()} <button onclick={() => props.handleclick1()}>value1 + 1</button> </div> ); }); const child2 = memo(props => { return ( <div> {(() => console.log("child2-render"))()} <button onclick={() => props.handleclick2()}>value2 + 1</button> </div> ); }); export default parent
usecallback返回的是一个memoized回调函数,仅在其中绑定的一个依赖项变化后才更改可防止不必要的渲染,在跨组件共享数据中举例的事件是在父组件中点击触发,而现在是使用状态提升,在父组件中传递方法供子组件调用,每次render时函数也会变化,导致子组件重新渲染,上面例子usecallback将函数进行包裹,依赖值未发生变化时会返回缓存的函数,配合react.memo即可优化无意义的渲染。
5、usememo:性能优化
语法:
// usememo(回调函数,[依赖值]) usememo(() => { // 做一些事情 },[value]);
先看一个例子:
import react, { usestate } from 'react' const test = ()=> { const [value, setvalue] = usestate(0); const [count, setcount] = usestate(1); const getdoublecount = () => { console.log('getdoublecount进行计算了'); return count * 2; }; return ( <div> <h2>value: {value}</h2> <h2>doublecount: {getdoublecount()}</h2> <button onclick={() => setvalue(value + 1)}>value+1</button> </div> ) } export default test
可以看到getdoublecount依赖的是count,但value发生变化它也重新进行了计算渲染,现在只需要将getdoublecount使用usememo进行包裹,如下:
import react, { usestate, usememo } from 'react' const test = ()=> { const [value, setvalue] = usestate(0); const [count, setcount] = usestate(1); const getdoublecount = usememo(() => { console.log('getdoublecount进行计算了'); return count * 2; },[count]); return ( <div> <h2>value: {value}</h2> <h2>doublecount: {getdoublecount}</h2> <button onclick={() => setvalue(value + 1)}>value+1</button> </div> ) } export default test
现在getdoublecount只有依赖的count发生变化时才会重新计算渲染。
usememo和usecallback的共同点:
- 接收的参数都是一样的,第一个是回调函数,第二个是依赖的数据
- 它们都是当依赖的数据发生变化时才会重新计算结果,起到了缓存作用
usememo和usecallback的区别:
- usememo计算结果是return回来的值,通常用于缓存计算结果的值
- usecallback计算结果是一个函数,通常用于缓存函数
6、useref用法:例如要实现点击button按钮使input输入框获得焦点:
import react, { usestate, usememo } from 'react' const test = ()=> { const [value, setvalue] = usestate(0); const [count, setcount] = usestate(1); const getdoublecount = usememo(() => { console.log('getdoublecount进行计算了'); return count * 2; },[count]); return ( <div> <h2>value: {value}</h2> <h2>doublecount: {getdoublecount}</h2> <button onclick={() => setvalue(value + 1)}>value+1</button> </div> ) } export default test
这样看起来非常像react.createref(),将上面代码中的useref()改成react.createref()也能实现同样的效果,那为什么要设计一个新的hook?难道只是会了加上use,统一hook规范?
事实上,它们确实不一样。
官网的说明如下:
useref returns a mutable ref object whose .current property is initialized to the passed
argument (initialvalue). the returned object will persist for the full lifetime of the component.
翻译:
简单来说,useref就像一个储物箱,你可以随意存放任何东西,再次渲染时它会去储物箱找,createref每次渲染都会返回一个新的引用,而useref每次都会返回相同的引用。
到此这篇关于react hook用法详解(6个常见hook)的文章就介绍到这了,更多相关react hook用法内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 无葬身处