You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
- Fiber 中带有 effcet 名称的属性代表与副作用相关,Host Component 中的 DOM 的增删改查,Functuon 中的 useEffect、useLayoutEffect
|
|
|
|
- Fiber 中的 lanes 属性和 childLanes 属性与 Fiber 的优先级的调度有关
|
|
|
|
- Fiber 中的 alternate 属性则表示了 Fiber 的工作方式
|
|
|
|
|
|
|
|
`tag` :
|
|
|
|
> 表示 Fiber 的类型,根据 ReactElement 组件的 `type` 生成
|
|
|
|
|
|
|
|
`elementType` :
|
|
|
|
> 大部分时候和 `type` 是相同的
|
|
|
|
> FunctionComponent 使用 `React.memo` 会有不同
|
|
|
|
|
|
|
|
`type` :
|
|
|
|
> FunctionComponent 而言是函数本身
|
|
|
|
> ClassComponent 而言是 Class
|
|
|
|
> Host Component 而言是 DOM 节点的 Tag Name
|
|
|
|
|
|
|
|
`key` :
|
|
|
|
> 和 ReactElement 的 key 属性一致
|
|
|
|
|
|
|
|
`stateNode` :
|
|
|
|
> HostComponent 而言,是它的真实 DOM 节点
|
|
|
|
> ClassComponent 而言是 clsss 实例
|
|
|
|
|
|
|
|
`return` :
|
|
|
|
> 指向父节点
|
|
|
|
|
|
|
|
`child` :
|
|
|
|
> 指向第一个子节点
|
|
|
|
|
|
|
|
`sibling` :
|
|
|
|
> 指向下一个兄弟节点
|
|
|
|
|
|
|
|
`index` :
|
|
|
|
> 代表在多个同级 Fiber 节点中,它们插入的位置索引
|
|
|
|
> 单节点默认为 0
|