中等React
0 1

请解释:React的实例?函数式组件是否有实例 是什么?

【概念释义】

类组件实例new Component(props) 产生的对象,含 state、refs、生命周期。函数组件无实例,每次 render 是函数调用,状态存在 Fiber 链表 hooks 队列。因此函数组件不能 ref 实例(除非 forwardRef 暴露 imperative handle),也不能 new

【基础使用】

jsx
class ClassPanel extends React.Component {
  render() { return <div>{this.props.title}</div>; }
}

登录查看完整 1094

回答讨论

暂无讨论,登录后可抢先发言

本题库更多题目(50)