react-hook

有状态组件:

class Example extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      count: 0
    };
  }

  render() {
    return (
      

You clicked {this.state.count} times

); } }

使用hooks后:

import { useState } from 'react';

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

  return (
    

You clicked {count} times

); }

代码量减少了很多

为什么使用Hooks

  • 组件复用是状态管理难以维护
  • 纯函数
  • 副作用Effects
  • State Hooks

引用掘金社区Hooks

你可能感兴趣的:(react-hook)