老师,react16后提供了很多hook函数,比如useState等,您说写react页面,用function pageName 比用class pageName,两种编程方式,function函数编程, 和class类编程,都有哪些优点呢?哪一种更有优势呢。
const [inputValue, setInputValue] = useState(‘输入框默认值’);
function handleInputChange(e) {
// console.log(e.target.value)
// state.inputValue = e.target.value
// console.log(state.inputValue)
setInputValue(e.target.value)
}