React
December 13, 2022
Philosophy # 告诉我你要(展示)什么,剩下的由框架去做 Concepts # Element # React Element: js 对象,描述需要被渲染的元素,包括其类型及属性;比真实的 Dom element 更轻量 有 class and functional components, host components (DOM nodes), portals 这些类型 Dom Element: type 为 dom type string (e.g. ‘h1’) 的 React Element,用于描述 Dom 节点 Component Element: type 为 Function 或 Class 的 React Element,用于描述 React Component Component: class or function, 接收 props,返回 Element Tree Virtual Dom: 真实 dom 对象的轻量表示 JSX # UI 的声明式描述,可被 Babel 转为标准的 JavaScript 语法 ...