一基础知识 React API 一览
Posted qiandingwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一基础知识 React API 一览相关的知识,希望对你有一定的参考价值。
1.10 Hooks
参考文章:https://juejin.im/post/5be3ea136fb9a049f9121014
demo:
/** * 必须要react和react-dom 16.7以上 */ import React, useState, useEffect from ‘react‘ export default () => const [name, setName] = useState(‘jokcy‘) useEffect(() => console.log(‘component update‘) return () => console.log(‘unbind‘) , []) return ( <> <p>My Name is: name</p> <input type="text" value=name onChange=e => setName(e.target.value) /> </> )
1.11 React.children
以上是关于一基础知识 React API 一览的主要内容,如果未能解决你的问题,请参考以下文章