react Hook

https://react.docschina.org/docs/hooks-intro.html

Hook 是 React 16.8 的新增特性。它可以让你在不编写 class 的情况下使用 state 以及其他的 React 特性。

import React, { useState } from 'react';

 

function Example() {

  const [count, setCount] = useState(0);

  return (

    <div>

      <p>You clicked {count} times</p>

      <button onClick={() => setCount(count + 1)}>

        Click me

      </button>

    </div>

  );

}

react Hook

 

 

状态数据和UI显示分离

react Hook

 

 

useEffect

react Hook

 

上一篇:[必须要了解的React -状态管理]阅读hox对状态管理的思考


下一篇:react 基本hook的使用