简单React
0 1

React 中 Element和 Component 有哪些关键差异?

【概念释义】

React Element 是描述 UI 的普通对象$$typeoftypeprops),由 JSX/createElement 创建,轻量、不可变。Component函数或 class,接收 props 返回 Element(或 null),可含 state/副作用。Element 是快照;Component 是可复用逻辑单元。

【基础使用】

jsx
"qb-hl-comment">// Element(对象)
const el = <Button type="primary">OK</Button>;

"qb-hl-comment">// Component(函数)

登录查看完整 1113

回答讨论

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

本题库更多题目(50)