React 16.7-alpha中新增了新功能:`Hooks`。总结他的功能就是:让`FunctionalComponent`具有`ClassComponent`的功能。 ```js import React, { useState, useEffect } from 'react' function FunComp(props) { const = useState('initialState') function handleChange(e) { setData(e.targe...
React 16.7-alpha中新增了新功能:`Hooks`。总结他的功能就是:让`FunctionalComponent`具有`ClassComponent`的功能。 ```js import React, { useState, useEffect } from 'react' function FunComp(props) { const = useState('initialState') function handleChange(e) { setData(e.targe...