一基础知识 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 一览的主要内容,如果未能解决你的问题,请参考以下文章

React Router 基础组件一览

小程序从0到1小程序常用组件一览

Kotlin 知识梳理 | 基础概念一览

React全部api解读+基础实践大全(夯实基础万字总结!)

机器学习高阶训练营知识点一览

PicoVR Unity SDK⭐️常用API接口函数一览