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.
|
|
|
# beginWork 和 completeWork
|
|
|
|
在 [[React 源码的碎片记录]] 中写了,在 React 的 Fiber 递归阶段会有两个函数,分别执行递和归两个动作,它们就是 beginWork 和 completeWork
|
|
|
|
```javascript
|
|
|
|
function beginWork(current, workInProgress, renderLanes) {}
|
|
|
|
```
|