码迷,mamicode.com
首页 > Windows程序 > 详细

一、基础知识 React API 一览

时间:2019-06-23 12:50:18      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:export   val   change   NPU   type   port   bind   col   hook   

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 一览

标签:export   val   change   NPU   type   port   bind   col   hook   

原文地址:https://www.cnblogs.com/QianDingwei/p/11072363.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!